Files
df-research/dataframe/examples/notebooks/youtube/Youtube.ipynb
2026-02-08 11:20:43 -10:00

8232 lines
1.6 MiB
Vendored
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"cells": [
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:40.349875Z",
"start_time": "2025-05-28T11:08:40.322051Z"
}
},
"cell_type": "code",
"source": "%useLatestDescriptors",
"outputs": [],
"execution_count": 1
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:45.785143Z",
"start_time": "2025-05-28T11:08:40.508914Z"
}
},
"cell_type": "code",
"source": "%use dataframe",
"outputs": [],
"execution_count": 2
},
{
"metadata": {},
"cell_type": "markdown",
"source": [
"This example uses the YouTube Data API: [https://developers.google.com/youtube/v3/docs](https://developers.google.com/youtube/v3/docs).\n",
"Follow the tutorials over there to gain an API key.\n",
"\n",
"When running in Kotlin Notebook, you can set the API key as an environment variable, like \"YOUTUBE_API_KEY=YourKeyHere\""
]
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:45.943071Z",
"start_time": "2025-05-28T11:08:45.795300Z"
}
},
"cell_type": "code",
"source": "val apiKey = System.getenv(\"YOUTUBE_API_KEY\")",
"outputs": [],
"execution_count": 3
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:46.212151Z",
"start_time": "2025-05-28T11:08:45.947088Z"
}
},
"cell_type": "code",
"source": "fun load(path: String): AnyRow = DataRow.read(\"https://www.googleapis.com/youtube/v3/$path&key=$apiKey\")",
"outputs": [],
"execution_count": 4
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:47.142326Z",
"start_time": "2025-05-28T11:08:46.216500Z"
}
},
"cell_type": "code",
"source": [
"fun load(path: String, maxPages: Int): AnyFrame {\n",
" val rows = mutableListOf<AnyRow>()\n",
" var pagePath = path\n",
" do {\n",
" val row = load(pagePath)\n",
" rows.add(row)\n",
" val next = row.getValueOrNull<String>(\"nextPageToken\")\n",
" pagePath = path + \"&pageToken=\" + next\n",
" } while (next != null && rows.size < maxPages)\n",
" return rows.concat()\n",
"}"
],
"outputs": [],
"execution_count": 5
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:08:53.720408Z",
"start_time": "2025-05-28T11:08:47.147977Z"
}
},
"cell_type": "code",
"source": [
"val df = load(\"search?q=cute%20cats&maxResults=50&part=snippet\", 5)\n",
"df"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_1()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_1\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281088&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 5, columnsCount = 7&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchListResponse&quot;,&quot;youtube#searchListResponse&quot;,&quot;youtube#searchListResponse&quot;,&quot;youtube#searchListResponse&quot;,&quot;youtube#searchListResponse&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;T6udsa-TQeP9QCyAjPWhJ3t7sU4&quot;,&quot;rTQgFk1ZugVPD-3tTsRenv8hvew&quot;,&quot;kw09tM5YNHe2PYMIqfU0BnP0DLk&quot;,&quot;KM9NoV0_IUPHwT8RUB4FUjLM0d8&quot;,&quot;zkGt4KCDetsVPV6KJt1u40y3n8A&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;nextPageToken: String&bsol;&quot;&gt;nextPageToken&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CDIQAA&quot;,&quot;CGQQAA&quot;,&quot;CJYBEAA&quot;,&quot;CMgBEAA&quot;,&quot;CPoBEAA&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;regionCode: String&bsol;&quot;&gt;regionCode&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;DE&quot;,&quot;DE&quot;,&quot;DE&quot;,&quot;DE&quot;,&quot;DE&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;totalResults: Int&bsol;&quot;&gt;totalResults&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;resultsPerPage: Int&bsol;&quot;&gt;resultsPerPage&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;pageInfo: DataRow&lt;*&gt;&bsol;&quot;&gt;pageInfo&lt;&sol;span&gt;&quot;, children: [4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 1000000&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPer...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 1000000&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPer...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 1000000&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPer...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 1000000&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPer...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 1000000&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1000000&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPer...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;items: DataFrame&lt;*&gt;&bsol;&quot;&gt;items&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1560281089, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281090, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281091, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281092, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281093, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;prevPageToken: String?&bsol;&quot;&gt;prevPageToken&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;null&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;CDIQAQ&quot;,&quot;CGQQAQ&quot;,&quot;CJYBEAE&quot;,&quot;CMgBEAE&quot;] }, \n",
"], id: 1560281088, rootId: 1560281088, totalRows: 5 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;webdtycT-B4LmJXWkBJvVWUmcHY&quot;,&quot;t1vv105IWNG2EOHsMAK2yRtj010&quot;,&quot;2Kd_RVdhCCBb6srFTzcoirkVZro&quot;,&quot;E6nCj0vSvJRjNcEQaFQ2d8spmhM&quot;,&quot;Qg7OO4HOlZZ3YLpsJWVYBt92Kwc&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: y0sF5xhGreA&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;y0s&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: tpiyEe_CqB4&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;tpi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: wdjpworLSk8&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;wdj&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: MlDtL2hIj-Q&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;MlD&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 1UgJI6O8T2U&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;1Ug&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCzn2gx8zzhF0A4Utk8TEDNQ&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCkgRhUW4sHt6bQ32dNiQVVg&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;&quot;&gt;Cute, cuddly, and utterly chaotic! Th&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;&quot;&gt;Hoomans! Rufus here! Cats are my best&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;&quot;&gt;shorts #catvideos #cat #funnycats #ki&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;&quot;&gt;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;The Pet Collective&quot;,&quot;Rufus&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;The Pet Collective&quot;,&quot;Dancing Cat&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-28T13:00:44Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-28T13:00:44Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-28T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2020-04-10T16:00:28Z&bsol;nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ&bsol;ntitle: Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Rufus&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2020-04-10T16:00:28Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2020-04-10T16:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-09-15T22:02:00Z&bsol;nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ&bsol;ntitle: Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute Cat&amp;#55357;&amp;#56369;&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-09-15T22:02:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-09-15T22:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-11-19T19:00:10Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;ndescription: How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-11-19T19:00:10Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-11-19T19:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-14T04:24:22Z&bsol;nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg&bsol;ntitle: &amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Dancing Cat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-14T04:24:22Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-14T04:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281089, rootId: 1560281088, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;kv7MVSZ2aeop-dOPcp-FeAHEA50&quot;,&quot;U4EBCE6U_LhzutW4RdWfrQG96l8&quot;,&quot;3k4MUtz5wVg_nSlA9gP9iMVs-sA&quot;,&quot;G1S5_A7vd2ZXZf9RQRWdRghk-TM&quot;,&quot;D4er9BSUik1cPRR8eta_xxnq5DU&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;m_zVRAWuxac&quot;,&quot;28O4PxyCG9E&quot;,&quot;8E6NNlyMG8U&quot;,&quot;NlxYY7w1UGU&quot;,&quot;Yy0DVnqKHuI&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: m_zVRAWuxac&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;m_z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 28O4PxyCG9E&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;28O&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 8E6NNlyMG8U&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;8E6&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: NlxYY7w1UGU&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;Nlx&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: Yy0DVnqKHuI&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;Yy0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2025-01-19T02:00:47Z&quot;,&quot;2023-12-25T07:55:44Z&quot;,&quot;2025-04-14T17:35:40Z&quot;,&quot;2024-01-08T13:13:21Z&quot;,&quot;2024-07-22T12:19:23Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCssBz_9Te2OFHBdgfgt89Lw&quot;,&quot;UCRSLeYO3BOhRAYz0vLfVSWw&quot;,&quot;UChWSzChGjwyrEPAVxi5-NfA&quot;,&quot;UCTmml_z2rBmxDUA9Ie4o_uA&quot;,&quot;UC0HRkOUeR4l1qwpRf9gLmdA&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat&bsol;&quot;&gt;#cute #cat #cats #cats101 #shorts #sh&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;My Kitten&amp;#38;#39;s Name Reveal! #cat #cute #shorts&bsol;&quot;&gt;My Kitten&amp;#38;#39;s Name Reveal! #cat #cu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Ranking Best Cat Veterinarian Videos&quot;,&quot;Cat videos cute cats kittens &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56382;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts&bsol;&quot;&gt;Cute cats and kittens wants take a ba&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;My Kitten&amp;#39;s Name Reveal! #cat #cute #shorts &amp;#10024; hi im &amp;#10024; sugarstar &amp;#10024; and i make #sanrio, #miniverse and #roblox gameplay ...&bsol;&quot;&gt;My Kitten&amp;#39;s Name Reveal! #cat #cute #&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.&bsol;&quot;&gt;Ranking Best Cat Veterinarian Videos &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...&bsol;&quot;&gt;cat #cats #cute #funnycat #funnycats &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Cute cat&amp;#39;s &quot;,&quot;SugarStar&quot;,&quot;TheCatRanked&quot;,&quot;Little Kitten 21&quot;,&quot;Lovie Jennaira&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2025-01-19T02:00:47Z&quot;,&quot;2023-12-25T07:55:44Z&quot;,&quot;2025-04-14T17:35:40Z&quot;,&quot;2024-01-08T13:13:21Z&quot;,&quot;2024-07-22T12:19:23Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-19T02:00:47Z&bsol;nchannelId: UCssBz_9Te2OFHBdgfgt89Lw&bsol;ntitle: #cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;m_zVRAWuxac&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute cat&amp;#39;s &bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-19T02:00:47Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-19T02:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-12-25T07:55:44Z&bsol;nchannelId: UCRSLeYO3BOhRAYz0vLfVSWw&bsol;ntitle: My Kitten&amp;#38;#39;s Name Reveal! #cat #cute #shorts&bsol;ndescription: My Kitten&amp;#39;s Name Reveal! #cat #cute #shorts &amp;#10024; hi im &amp;#10024; sugarstar &amp;#10024; and i make #sanrio, #miniverse and #roblox gameplay ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;28O4PxyCG9E&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: SugarStar&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-12-25T07:55:44Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-12-25T07:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-04-14T17:35:40Z&bsol;nchannelId: UChWSzChGjwyrEPAVxi5-NfA&bsol;ntitle: Ranking Best Cat Veterinarian Videos&bsol;ndescription: Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8E6NNlyMG8U&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: TheCatRanked&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-04-14T17:35:40Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-04-14T17:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-01-08T13:13:21Z&bsol;nchannelId: UCTmml_z2rBmxDUA9Ie4o_uA&bsol;ntitle: Cat videos cute cats kittens &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56382;&bsol;ndescription: cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NlxYY7w1UGU&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Little Kitten 21&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-01-08T13:13:21Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-01-08T13:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-07-22T12:19:23Z&bsol;nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA&bsol;ntitle: Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Yy0DVnqKHuI&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Lovie Jennaira&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-07-22T12:19:23Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-07-22T12:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281090, rootId: 1560281088, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ggEd1myvu6lDjMBEOIWgmZx5c8k&quot;,&quot;bHp5F2FwnGntzzcNJQTmcUsjE7U&quot;,&quot;2csCwLHNA8or8IvJ3d-NSa6En3o&quot;,&quot;SOK-uBz4Kc2orec-1RxdFnnH1es&quot;,&quot;JubiiZK2MGCnXrEmQVzgynV5VTU&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;WwV1ikzS30k&quot;,&quot;ysP4toSDGL0&quot;,&quot;VNovPP-gjDI&quot;,&quot;4kyJvjssTko&quot;,&quot;vaoC5C7f1Lk&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: WwV1ikzS30k&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;WwV&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: ysP4toSDGL0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;ysP&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: VNovPP-gjDI&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;VNo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 4kyJvjssTko&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;4ky&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: vaoC5C7f1Lk&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;vao&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-06-16T12:06:05Z&quot;,&quot;2025-01-30T07:55:46Z&quot;,&quot;2024-12-24T06:59:23Z&quot;,&quot;2025-05-27T11:10:24Z&quot;,&quot;2024-10-26T22:00:39Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCS56r87Y7q1SrAB-42brE-w&quot;,&quot;UCpxhEyGRH4huNK7LnuiMBaw&quot;,&quot;UCM0ynRzEUoJa1N8dYI6N-Bw&quot;,&quot;UCsjLwvtRI0XjvKFty_s0Ykg&quot;,&quot;UCmX7Iw8rYnSEB3Q-vk3dKjQ&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Love Story&amp;#55357;&amp;#56473; #cat #cats&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse&bsol;&quot;&gt;Timelapse of cute kittens from 1 day &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi&bsol;&quot;&gt;Cute Cats Moment Pyari Pyari Billiyan&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat singing &amp;#10084;&amp;#65039;| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover&bsol;&quot;&gt;Cat singing &amp;#10084;&amp;#65039;| Cute Cats #cutecats #&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Woman Found Bag Of Kittens Outside Her Door &amp;#10084;&amp;#65039;#kitten #catshorts #catlover&bsol;&quot;&gt;Woman Found Bag Of Kittens Outside He&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...&bsol;&quot;&gt;Cute Cats Moment Pyari Pyari Billiyan&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat singing | Cute Cats&amp;#10084;&amp;#65039; #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...&bsol;&quot;&gt;Cat singing | Cute Cats&amp;#10084;&amp;#65039; #ShortsVi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE &amp;#10084;&amp;#65039; #cat #cats #cute #adorable #cuteanimal ...&bsol;&quot;&gt;If you like wholesome animal stories &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Sonyakisa8 TT&quot;,&quot;Republic Of Cat&quot;,&quot;Cat dance official &quot;,&quot;The Black Kitten&quot;,&quot;Wholesome Animals&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-06-16T12:06:05Z&quot;,&quot;2025-01-30T07:55:46Z&quot;,&quot;2024-12-24T06:59:23Z&quot;,&quot;2025-05-27T11:10:24Z&quot;,&quot;2024-10-26T22:00:39Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-06-16T12:06:05Z&bsol;nchannelId: UCS56r87Y7q1SrAB-42brE-w&bsol;ntitle: Love Story&amp;#55357;&amp;#56473; #cat #cats&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;WwV1ikzS30k&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Sonyakisa8 TT&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-06-16T12:06:05Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-06-16T12:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-30T07:55:46Z&bsol;nchannelId: UCpxhEyGRH4huNK7LnuiMBaw&bsol;ntitle: Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ysP4toSDGL0&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Republic Of Cat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-30T07:55:46Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-30T07:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-12-24T06:59:23Z&bsol;nchannelId: UCM0ynRzEUoJa1N8dYI6N-Bw&bsol;ntitle: Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi&bsol;ndescription: Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;VNovPP-gjDI&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cat dance official &bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-12-24T06:59:23Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-12-24T06:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-27T11:10:24Z&bsol;nchannelId: UCsjLwvtRI0XjvKFty_s0Ykg&bsol;ntitle: Cat singing &amp;#10084;&amp;#65039;| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover&bsol;ndescription: Cat singing | Cute Cats&amp;#10084;&amp;#65039; #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;4kyJvjssTko&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Black Kitten&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-27T11:10:24Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-27T11:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-10-26T22:00:39Z&bsol;nchannelId: UCmX7Iw8rYnSEB3Q-vk3dKjQ&bsol;ntitle: Woman Found Bag Of Kittens Outside Her Door &amp;#10084;&amp;#65039;#kitten #catshorts #catlover&bsol;ndescription: If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE &amp;#10084;&amp;#65039; #cat #cats #cute #adorable #cuteanimal ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;vaoC5C7f1Lk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Wholesome Animals&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-10-26T22:00:39Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-10-26T22:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281091, rootId: 1560281088, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;9ObA9j-MdtGGTM6FGne5wPMiEtA&quot;,&quot;mLqrLcFax6Tz-5cHIGNblejev3U&quot;,&quot;tK-o-MTRUGIlDf8ourBDV8R6Oxk&quot;,&quot;GgWSUhZhBEaFs_MS1OC87JHSB78&quot;,&quot;iLcRw6eBYyNjJ_R2aaZf40IQToU&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;qhIuSHwBwQI&quot;,&quot;dAKBqZrkuhc&quot;,&quot;Lw-HvKfC5rU&quot;,&quot;fmwM8WDN2Ig&quot;,&quot;ulSiWcHV2yI&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: qhIuSHwBwQI&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;qhI&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: dAKBqZrkuhc&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;dAK&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: Lw-HvKfC5rU&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;Lw-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: fmwM8WDN2Ig&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;fmw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: ulSiWcHV2yI&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;ulS&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2025-05-26T19:55:00Z&quot;,&quot;2023-03-31T09:15:22Z&quot;,&quot;2025-05-26T09:52:12Z&quot;,&quot;2024-09-26T10:54:13Z&quot;,&quot;2024-11-21T01:34:17Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCHU9APgMgi5ebeiMXD4FasA&quot;,&quot;UCp7VGGSdfi3QDt7JA9GuLMA&quot;,&quot;UCGXEyVf71QKVRzLYBnQcj5Q&quot;,&quot;UCd6jSrh0GcECPVig3O2QPoQ&quot;,&quot;UCMTq26KYuWZ2pvgh6F1paLw&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Other Cats Are Cute&amp;#8230; But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten&bsol;&quot;&gt;Other Cats Are Cute&amp;#8230; But not mine #Ca&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;dancing cat&amp;#55357;&amp;#56369;funny dance #shorts ytshorts #viralshorts&bsol;&quot;&gt;dancing cat&amp;#55357;&amp;#56369;funny dance #shorts ytsh&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song&bsol;&quot;&gt;SUPER HARD #kpop #enhypen #cute #cats&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funny Pets | 2024&amp;#55357;&amp;#56834; Funny Dogs And Funny Cats Videos &amp;#55357;&amp;#56369; &amp;#55357;&amp;#56341; &amp;#55357;&amp;#56836; #145&bsol;&quot;&gt;Funny Pets | 2024&amp;#55357;&amp;#56834; Funny Dogs And Fu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;English speaking cats #funny #funnycats #funnyanimals&bsol;&quot;&gt;English speaking cats #funny #funnyca&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...&bsol;&quot;&gt;facts #animals #pets #cats #funny #sh&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.&bsol;&quot;&gt;dancing cat funny dance #shorts ytsho&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Paws &amp;#38; Claws&quot;,&quot;Funny-animals&amp;#55357;&amp;#56613;(j.s.d)&quot;,&quot;Sunghoonverse&amp;#9734;&quot;,&quot;wk.loverbaby&quot;,&quot;Prank&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2025-05-26T19:55:00Z&quot;,&quot;2023-03-31T09:15:22Z&quot;,&quot;2025-05-26T09:52:12Z&quot;,&quot;2024-09-26T10:54:13Z&quot;,&quot;2024-11-21T01:34:17Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-26T19:55:00Z&bsol;nchannelId: UCHU9APgMgi5ebeiMXD4FasA&bsol;ntitle: Other Cats Are Cute&amp;#8230; But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten&bsol;ndescription: facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;qhIuSHwBwQI&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Paws &amp;#38; Claws&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-26T19:55:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-26T19:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-03-31T09:15:22Z&bsol;nchannelId: UCp7VGGSdfi3QDt7JA9GuLMA&bsol;ntitle: dancing cat&amp;#55357;&amp;#56369;funny dance #shorts ytshorts #viralshorts&bsol;ndescription: dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;dAKBqZrkuhc&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Funny-animals&amp;#55357;&amp;#56613;(j.s.d)&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-03-31T09:15:22Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-03-31T09:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-26T09:52:12Z&bsol;nchannelId: UCGXEyVf71QKVRzLYBnQcj5Q&bsol;ntitle: SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Lw-HvKfC5rU&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Sunghoonverse&amp;#9734;&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-26T09:52:12Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-26T09:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-26T10:54:13Z&bsol;nchannelId: UCd6jSrh0GcECPVig3O2QPoQ&bsol;ntitle: Funny Pets | 2024&amp;#55357;&amp;#56834; Funny Dogs And Funny Cats Videos &amp;#55357;&amp;#56369; &amp;#55357;&amp;#56341; &amp;#55357;&amp;#56836; #145&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;fmwM8WDN2Ig&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: wk.loverbaby&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-26T10:54:13Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-26T10:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-11-21T01:34:17Z&bsol;nchannelId: UCMTq26KYuWZ2pvgh6F1paLw&bsol;ntitle: English speaking cats #funny #funnycats #funnyanimals&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ulSiWcHV2yI&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Prank&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-11-21T01:34:17Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-11-21T01:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281092, rootId: 1560281088, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;f2TxVkPRNLpJYzvrWXIj7q_Wabk&quot;,&quot;7F5_h_2ke8u4iQWL8gLmCnSK7IA&quot;,&quot;umijxWlqN9aljPPVEWRaPVy3tF8&quot;,&quot;AIl90pHafNN_cYETgdG9MLY3ba0&quot;,&quot;9gZKTu4QY4pQO8fcmydm0ivnbmA&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;7I3eb5BJih0&quot;,&quot;RO2UWZAPnQw&quot;,&quot;E17ONCWoXkM&quot;,&quot;owBUTRNGaHo&quot;,&quot;-DeXyOFd7gk&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 7I3eb5BJih0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;7I3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: RO2UWZAPnQw&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;RO2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: E17ONCWoXkM&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;E17&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: owBUTRNGaHo&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;owB&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: -DeXyOFd7gk&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;-De&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2024-11-02T01:00:04Z&quot;,&quot;2024-09-27T09:47:58Z&quot;,&quot;2025-05-22T11:00:33Z&quot;,&quot;2025-04-11T08:03:27Z&quot;,&quot;2025-03-05T16:10:58Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCBmAlqRHJ_fO5TLOjIwoS2A&quot;,&quot;UC5jmROOBtTrJFYj2yXUTraQ&quot;,&quot;UCe3mDJIOVSbyNMGpr7j8CmA&quot;,&quot;UCE99_6mOUeCM6oHOgxHtduA&quot;,&quot;UC7NY0oUbxinn_3JfcSXCbCQ&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat&bsol;&quot;&gt;Cats can speak English #shorts #youtu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat fish catjhalpree rac in wat &amp;#55357;&amp;#56881;A poor mermaid kitten &amp;#55357;&amp;#56895; #cat #ai #catlover #&amp;#35987; #aicat&bsol;&quot;&gt;Cat fish catjhalpree rac in wat &amp;#55357;&amp;#56881;A p&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON &amp;#55358;&amp;#56688;&amp;#55357;&amp;#56570;&bsol;&quot;&gt;CUTE CATS AND KITTENS VERY HAPPY WATC&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Girls Have Cute Cats Boys Have This &amp;#55357;&amp;#56448; (Part 3)&bsol;&quot;&gt;Girls Have Cute Cats Boys Have This &amp;#55357;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Billi Ne Chori Kiya Baccha &amp;#55358;&amp;#56698; #cat video #cute cats #funnyvideo #viralvideo&bsol;&quot;&gt;Billi Ne Chori Kiya Baccha &amp;#55358;&amp;#56698; #cat vi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.&bsol;&quot;&gt;Troll Face Edits | Skull Face Memes |&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for &amp;#34;fair use&amp;#34; for purposes such ...&bsol;&quot;&gt;Disclaimer: Copyright Disclaimer Unde&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Shefali Rakhii&quot;,&quot;Ai Game &quot;,&quot;Salim Ubey&quot;,&quot;Grinly&quot;,&quot;MY CAT NEW FUNNY INDIA&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2024-11-02T01:00:04Z&quot;,&quot;2024-09-27T09:47:58Z&quot;,&quot;2025-05-22T11:00:33Z&quot;,&quot;2025-04-11T08:03:27Z&quot;,&quot;2025-03-05T16:10:58Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-11-02T01:00:04Z&bsol;nchannelId: UCBmAlqRHJ_fO5TLOjIwoS2A&bsol;ntitle: Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;7I3eb5BJih0&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Shefali Rakhii&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-11-02T01:00:04Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-11-02T01:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-27T09:47:58Z&bsol;nchannelId: UC5jmROOBtTrJFYj2yXUTraQ&bsol;ntitle: Cat fish catjhalpree rac in wat &amp;#55357;&amp;#56881;A poor mermaid kitten &amp;#55357;&amp;#56895; #cat #ai #catlover #&amp;#35987; #aicat&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RO2UWZAPnQw&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Ai Game &bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-27T09:47:58Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-27T09:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-22T11:00:33Z&bsol;nchannelId: UCe3mDJIOVSbyNMGpr7j8CmA&bsol;ntitle: CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON &amp;#55358;&amp;#56688;&amp;#55357;&amp;#56570;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;E17ONCWoXkM&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Salim Ubey&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-22T11:00:33Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-22T11:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-04-11T08:03:27Z&bsol;nchannelId: UCE99_6mOUeCM6oHOgxHtduA&bsol;ntitle: Girls Have Cute Cats Boys Have This &amp;#55357;&amp;#56448; (Part 3)&bsol;ndescription: Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;owBUTRNGaHo&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Grinly&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-04-11T08:03:27Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-04-11T08:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-03-05T16:10:58Z&bsol;nchannelId: UC7NY0oUbxinn_3JfcSXCbCQ&bsol;ntitle: Billi Ne Chori Kiya Baccha &amp;#55358;&amp;#56698; #cat video #cute cats #funnyvideo #viralvideo&bsol;ndescription: Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for &amp;#34;fair use&amp;#34; for purposes such ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;-DeXyOFd7gk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: MY CAT NEW FUNNY INDIA&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-03-05T16:10:58Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-03-05T16:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281093, rootId: 1560281088, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281088) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_1() {\n",
" let elem = document.getElementById(\"iframe_out_1\");\n",
" resize_iframe_out_1(elem);\n",
" setInterval(resize_iframe_out_1, 5000, elem);\n",
" }\n",
" function resize_iframe_out_1(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281094\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th style=\"text-align:left\">nextPageToken</th><th class=\"rightBorder\" style=\"text-align:left\">regionCode</th><th class=\"leftBorder\" style=\"text-align:left\">pageInfo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">items</th><th style=\"text-align:left\">prevPageToken</th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">totalResults</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">resultsPerPage</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">T6udsa-TQeP9QCyAjPWhJ3t7sU4</td><td style=\"vertical-align:top\">CDIQAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281095\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">webdtycT-B4LmJXWkBJvVWUmcHY</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">t1vv105IWNG2EOHsMAK2yRtj010</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2Kd_RVdhCCBb6srFTzcoirkVZro</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat&#55357;&#56369;</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">E6nCj0vSvJRjNcEQaFQ2d8spmhM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Qg7OO4HOlZZ3YLpsJWVYBt92Kwc</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">null</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">rTQgFk1ZugVPD-3tTsRenv8hvew</td><td style=\"vertical-align:top\">CGQQAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281096\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">kv7MVSZ2aeop-dOPcp-FeAHEA50</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">m_zVRAWuxac</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-19T02:00:47Z</td><td style=\"vertical-align:top\">UCssBz_9Te2OFHBdgfgt89Lw</td><td style=\"vertical-align:top\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute cat&#39;s </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-19T02:00:47Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">U4EBCE6U_LhzutW4RdWfrQG96l8</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">28O4PxyCG9E</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-12-25T07:55:44Z</td><td style=\"vertical-align:top\">UCRSLeYO3BOhRAYz0vLfVSWw</td><td style=\"vertical-align:top\">My Kitten&#38;#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">My Kitten&#39;s Name Reveal! #cat #cute #<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SugarStar</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-12-25T07:55:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">3k4MUtz5wVg_nSlA9gP9iMVs-sA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">8E6NNlyMG8U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-14T17:35:40Z</td><td style=\"vertical-align:top\">UChWSzChGjwyrEPAVxi5-NfA</td><td style=\"vertical-align:top\">Ranking Best Cat Veterinarian Videos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Ranking Best Cat Veterinarian Videos <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">TheCatRanked</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-14T17:35:40Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">G1S5_A7vd2ZXZf9RQRWdRghk-TM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">NlxYY7w1UGU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-01-08T13:13:21Z</td><td style=\"vertical-align:top\">UCTmml_z2rBmxDUA9Ie4o_uA</td><td style=\"vertical-align:top\">Cat videos cute cats kittens &#55357;&#56891;&#55357;&#56382;</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat #cats #cute #funnycat #funnycats <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Kitten 21</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-01-08T13:13:21Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">D4er9BSUik1cPRR8eta_xxnq5DU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Yy0DVnqKHuI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-22T12:19:23Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens wants take a ba<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-22T12:19:23Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CDIQAQ</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">kw09tM5YNHe2PYMIqfU0BnP0DLk</td><td style=\"vertical-align:top\">CJYBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281097\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">ggEd1myvu6lDjMBEOIWgmZx5c8k</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">WwV1ikzS30k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-06-16T12:06:05Z</td><td style=\"vertical-align:top\">UCS56r87Y7q1SrAB-42brE-w</td><td style=\"vertical-align:top\">Love Story&#55357;&#56473; #cat #cats</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Sonyakisa8 TT</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-06-16T12:06:05Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">bHp5F2FwnGntzzcNJQTmcUsjE7U</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ysP4toSDGL0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-30T07:55:46Z</td><td style=\"vertical-align:top\">UCpxhEyGRH4huNK7LnuiMBaw</td><td style=\"vertical-align:top\">Timelapse of cute kittens from 1 day <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Republic Of Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-30T07:55:46Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2csCwLHNA8or8IvJ3d-NSa6En3o</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">VNovPP-gjDI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-12-24T06:59:23Z</td><td style=\"vertical-align:top\">UCM0ynRzEUoJa1N8dYI6N-Bw</td><td style=\"vertical-align:top\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat dance official </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-12-24T06:59:23Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">SOK-uBz4Kc2orec-1RxdFnnH1es</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">4kyJvjssTko</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T11:10:24Z</td><td style=\"vertical-align:top\">UCsjLwvtRI0XjvKFty_s0Ykg</td><td style=\"vertical-align:top\">Cat singing &#10084;&#65039;| Cute Cats #cutecats #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat singing | Cute Cats&#10084;&#65039; #ShortsVi<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Black Kitten</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T11:10:24Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">JubiiZK2MGCnXrEmQVzgynV5VTU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">vaoC5C7f1Lk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-10-26T22:00:39Z</td><td style=\"vertical-align:top\">UCmX7Iw8rYnSEB3Q-vk3dKjQ</td><td style=\"vertical-align:top\">Woman Found Bag Of Kittens Outside He<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">If you like wholesome animal stories <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Wholesome Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-10-26T22:00:39Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CGQQAQ</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">KM9NoV0_IUPHwT8RUB4FUjLM0d8</td><td style=\"vertical-align:top\">CMgBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281098\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">9ObA9j-MdtGGTM6FGne5wPMiEtA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">qhIuSHwBwQI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-26T19:55:00Z</td><td style=\"vertical-align:top\">UCHU9APgMgi5ebeiMXD4FasA</td><td style=\"vertical-align:top\">Other Cats Are Cute&#8230; But not mine #Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">facts #animals #pets #cats #funny #sh<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Paws &#38; Claws</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-26T19:55:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">mLqrLcFax6Tz-5cHIGNblejev3U</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">dAKBqZrkuhc</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-03-31T09:15:22Z</td><td style=\"vertical-align:top\">UCp7VGGSdfi3QDt7JA9GuLMA</td><td style=\"vertical-align:top\">dancing cat&#55357;&#56369;funny dance #shorts ytsh<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">dancing cat funny dance #shorts ytsho<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Funny-animals&#55357;&#56613;(j.s.d)</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-03-31T09:15:22Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">tK-o-MTRUGIlDf8ourBDV8R6Oxk</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Lw-HvKfC5rU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-26T09:52:12Z</td><td style=\"vertical-align:top\">UCGXEyVf71QKVRzLYBnQcj5Q</td><td style=\"vertical-align:top\">SUPER HARD #kpop #enhypen #cute #cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Sunghoonverse&#9734;</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-26T09:52:12Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">GgWSUhZhBEaFs_MS1OC87JHSB78</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">fmwM8WDN2Ig</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T10:54:13Z</td><td style=\"vertical-align:top\">UCd6jSrh0GcECPVig3O2QPoQ</td><td style=\"vertical-align:top\">Funny Pets | 2024&#55357;&#56834; Funny Dogs And Fu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">wk.loverbaby</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T10:54:13Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">iLcRw6eBYyNjJ_R2aaZf40IQToU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ulSiWcHV2yI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-21T01:34:17Z</td><td style=\"vertical-align:top\">UCMTq26KYuWZ2pvgh6F1paLw</td><td style=\"vertical-align:top\">English speaking cats #funny #funnyca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Prank</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-21T01:34:17Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CJYBEAE</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">zkGt4KCDetsVPV6KJt1u40y3n8A</td><td style=\"vertical-align:top\">CPoBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281099\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">f2TxVkPRNLpJYzvrWXIj7q_Wabk</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">7I3eb5BJih0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-02T01:00:04Z</td><td style=\"vertical-align:top\">UCBmAlqRHJ_fO5TLOjIwoS2A</td><td style=\"vertical-align:top\">Cats can speak English #shorts #youtu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Shefali Rakhii</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-02T01:00:04Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">7F5_h_2ke8u4iQWL8gLmCnSK7IA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">RO2UWZAPnQw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-27T09:47:58Z</td><td style=\"vertical-align:top\">UC5jmROOBtTrJFYj2yXUTraQ</td><td style=\"vertical-align:top\">Cat fish catjhalpree rac in wat &#55357;&#56881;A p<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Ai Game </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-27T09:47:58Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">umijxWlqN9aljPPVEWRaPVy3tF8</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">E17ONCWoXkM</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-22T11:00:33Z</td><td style=\"vertical-align:top\">UCe3mDJIOVSbyNMGpr7j8CmA</td><td style=\"vertical-align:top\">CUTE CATS AND KITTENS VERY HAPPY WATC<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Salim Ubey</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-22T11:00:33Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">AIl90pHafNN_cYETgdG9MLY3ba0</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">owBUTRNGaHo</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-11T08:03:27Z</td><td style=\"vertical-align:top\">UCE99_6mOUeCM6oHOgxHtduA</td><td style=\"vertical-align:top\">Girls Have Cute Cats Boys Have This &#55357;<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Troll Face Edits | Skull Face Memes |<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Grinly</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-11T08:03:27Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">9gZKTu4QY4pQO8fcmydm0ivnbmA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">-DeXyOFd7gk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-03-05T16:10:58Z</td><td style=\"vertical-align:top\">UC7NY0oUbxinn_3JfcSXCbCQ</td><td style=\"vertical-align:top\">Billi Ne Chori Kiya Baccha &#55358;&#56698; #cat vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Disclaimer: Copyright Disclaimer Unde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">MY CAT NEW FUNNY INDIA</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-03-05T16:10:58Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CMgBEAE</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281094\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"kind\",\"etag\",\"nextPageToken\",\"regionCode\",\"pageInfo\",\"items\",\"prevPageToken\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}],\"nrow\":5,\"ncol\":7},\"kotlin_dataframe\":[{\"kind\":\"youtube#searchListResponse\",\"etag\":\"T6udsa-TQeP9QCyAjPWhJ3t7sU4\",\"nextPageToken\":\"CDIQAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"webdtycT-B4LmJXWkBJvVWUmcHY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"y0sF5xhGreA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"t1vv105IWNG2EOHsMAK2yRtj010\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tpiyEe_CqB4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Kd_RVdhCCBb6srFTzcoirkVZro\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wdjpworLSk8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"E6nCj0vSvJRjNcEQaFQ2d8spmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"MlDtL2hIj-Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Qg7OO4HOlZZ3YLpsJWVYBt92Kwc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1UgJI6O8T2U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"13rrjHLEedgFgBm9W24i_MYXOAQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cytJLvf-eVs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"XSVBsAd9es2GZHYdITYk3MBad58\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ASFCURj-2hQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 &amp; cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"pIgN9Ru809WNiPWBtuGlWQAbxCQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8iY66B5NB2w\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YRzi81_jEkZ9ME2DpoKA8Owvew4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1TsaNbWEckk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nST7mcLVAgbEWfHWUuHCcCmznAo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3URtTIdnXIk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nsPQ9fdFl-3JEvRvOGlkl3tQhAU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"afm0c53xO2o\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3FMsKvZ4tnjiAOCqvXQe8JdAtQw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"2M1AFRWPpy8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YARLzvIzFhBix3Ya8nPj0c9txvg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"o0Dvesp0lQU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5ByqGeQh1pBdfAUU_bOvX2Z4HfU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NsMKvVdEPkw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"VExjgdmgRBJWooA2pBfuAyzHSvQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"a7K-kWT_C2A\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ZRWfV7XfiOfkFiGnTg09gFRNA7Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"BOK8T1HK4S8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"p_f8U8Yr1b-IO4aBb-TfHjU7G6Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RFMuw3xpmFE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eRGtBGQW7bQjHH4WIr_I0NYD6wU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Po098TRdOn4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Wr7YkmJwDVgmgG5vhP6Nhx54eTg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"DrpvkCRE2P4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AGVb0f5--fq-CiJ0LWvkczCN6Us\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OQoukB1VB5k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":null},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"rTQgFk1ZugVPD-3tTsRenv8hvew\",\"nextPageToken\":\"CGQQAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"kv7MVSZ2aeop-dOPcp-FeAHEA50\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"m_zVRAWuxac\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-19T02:00:47Z\",\"channelId\":\"UCssBz_9Te2OFHBdgfgt89Lw\",\"title\":\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute cat's \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-19T02:00:47Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"U4EBCE6U_LhzutW4RdWfrQG96l8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"28O4PxyCG9E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-12-25T07:55:44Z\",\"channelId\":\"UCRSLeYO3BOhRAYz0vLfVSWw\",\"title\":\"My Kitten&#39;s Name Reveal! #cat #cute #shorts\",\"description\":\"My Kitten's Name Reveal! #cat #cute #shorts ✨ hi im ✨ sugarstar ✨ and i make #sanrio, #miniverse and #roblox gameplay ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SugarStar\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-12-25T07:55:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3k4MUtz5wVg_nSlA9gP9iMVs-sA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8E6NNlyMG8U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-14T17:35:40Z\",\"channelId\":\"UChWSzChGjwyrEPAVxi5-NfA\",\"title\":\"Ranking Best Cat Veterinarian Videos\",\"description\":\"Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"TheCatRanked\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-14T17:35:40Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"G1S5_A7vd2ZXZf9RQRWdRghk-TM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NlxYY7w1UGU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-01-08T13:13:21Z\",\"channelId\":\"UCTmml_z2rBmxDUA9Ie4o_uA\",\"title\":\"Cat videos cute cats kittens 😻🐾\",\"description\":\"cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Kitten 21\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-01-08T13:13:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"D4er9BSUik1cPRR8eta_xxnq5DU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Yy0DVnqKHuI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-22T12:19:23Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-22T12:19:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2pyOnj4TSf9rCLkaUXy_w6eMCSg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tT377yJJg38\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-01T11:46:41Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"How do you like my new hat? 🤔 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-01T11:46:41Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8DdaWkp_h8RlEegI9M7K-R-T1mI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Y4GFrpKSL8Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-06T16:15:13Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"The Most dramatic cats moments ever! 😂🤣 Funny Cat Videos 2025\",\"description\":\"The Most dramatic cats moments ever! Funny Cat Videos 2025 What's inside? Ultimate drama queen cats! Funniest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-06T16:15:13Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"_51kRYQBZaO8Treb2dRLDzwcoJA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"zchD6u1s-jc\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-05-31T09:46:29Z\",\"channelId\":\"UCpxhEyGRH4huNK7LnuiMBaw\",\"title\":\"Timelapse Cute Kittens Aged 1 To 100 Days😻 #kucinglucu #kucing #kitten #catlover\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Republic Of Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-05-31T09:46:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"keXQQuV6iYqwdgyb-jYIMa8PWOo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tHXwaPm9X5E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-23T15:55:04Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"It seems Sonya&#39;s choice was obvious! 😅 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-23T15:55:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5fYP0Xqv44YKUFwporcT5xD1yhU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ZvrWSP3kTXk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-04T01:30:29Z\",\"channelId\":\"UC1vr48dUfvIW2XBUu-G-4HQ\",\"title\":\"Super cat dance 🥰 #cute #cat #catlover #funny #short #shorts #shortvideo #yt #ytshort #ytshorts\",\"description\":\"Super cat dance #cute #cat #catlover #funny ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-04T01:30:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Ga7zAz6mBQ9gRFMMdmp8pNqkGzM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"9ImL3zkMx2E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-29T14:18:46Z\",\"channelId\":\"UC0URdxn-zazosQ0AnjAWi0Q\",\"title\":\"CAT MEMES 🐱 INSIDE OUT BUT CATS #cat #catlover #catvideos #insideout #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"OhCrayZ\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-29T14:18:46Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2msQkphBRNHn94rAJvYE8FVuZdU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3AfETaI8Ias\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-02-21T18:58:48Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Kisa ❤️ #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-02-21T18:58:48Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GymqN78Cd3cBY61YE59x0ogtDu4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qK9foZqrM2I\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T07:19:52Z\",\"channelId\":\"UCj9Hz8i_ZYGvrLqpPVmA31Q\",\"title\":\"Bad 👎Daddy 👨 cat 😳l #shorts #cute #cats #kitty #kittens #catlover #catvideos #catvideo #ai #cutecats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat 😍 shorts \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T07:19:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"J12Pf1fSfwUFUDxzLITgg6GFJ8o\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"A-M6s_4qo2Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:21:37Z\",\"channelId\":\"UCwyLBSi5sEnsyyJRno3g52w\",\"title\":\"Pinky Kitten #catvideos #catlover #frozen #letitgo #cutecat #cat #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Jusbrend Meow\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:21:37Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"4p0AlQMzBQxn_eMHYGFQ7leD-Ds\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qA_jwg0cjaU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-21T16:57:05Z\",\"channelId\":\"UCeMMKSD_Q61RqKna9eHdnSg\",\"title\":\"little kitten impatiently waiting for fish #viral #viral #cat #cuteanimal #cute #kitten#funny#funny\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ai pet creations\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-21T16:57:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8Q0Qu37UpBRzffO0d4eSzgf5aDQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NvkDYazj_6Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2019-12-28T21:37:21Z\",\"channelId\":\"UCMFSkaC6CgOh4L3IcVP2P8g\",\"title\":\"Kittens and Cats learn Сatches FISH. 🐟🐠 Too funny |Too cute\",\"description\":\"Kittens and Cats learn Сatches Fish Too funny | Too cute Can any of them catch a fish? When shooting this video, no fish ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Teddy Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2019-12-28T21:37:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DmCeiT_RTl1DCcUC3RqKby4vyVI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"EM41yq0OUQ4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2022-10-01T00:00:09Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"Amazing Cat Performs Magic Trick! #Cats #Tricks\",\"description\":\"We've found @DavidBlaine in cat form! ✨ #PetTricksDay #CatTricks #AnimalTricks #FunnyCats #Funny #Cats #Kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2022-10-01T00:00:09Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AXFxRfEFaYSz_MAPKhvIUGLNg7A\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"XTi0-Y5xhXA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-19T02:00:11Z\",\"channelId\":\"UCdkiBdZ6VYTgizXeB03qL7A\",\"title\":\"Cute kitten #cat #lovecats #cats #catvideos #kittens #catlover #princesscat #kitten\",\"description\":\"Cute kitten #cat #lovecats #cats #catvideos #kittens #catlover #princesscat #kitten #kat #catvideo #catviedosforcatstowatch ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Princess cat 👑\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-19T02:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"JeJ6eMYJuPhqYdfvO39VcFN01PU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"FHUbU7ZTIkk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-14T08:01:07Z\",\"channelId\":\"UC5i4HsHtR7MuIl-MOiHA2_w\",\"title\":\"🌧️ Cute Cats in the Rain Wearing Adorable Raincoats Meow Meow Sad Song 😿🎶\",\"description\":\"Watch these adorable cats as they bravely face the rain, dressed in the cutest little raincoats! ☔ Their tiny paws step carefully on ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow Memories\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-14T08:01:07Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nBzI6-AwEQayq-HV1CNF3N4d4Ps\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"5ZLlN3JJ5Eg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-21T10:00:16Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-21T10:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CDIQAQ\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"kw09tM5YNHe2PYMIqfU0BnP0DLk\",\"nextPageToken\":\"CJYBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"ggEd1myvu6lDjMBEOIWgmZx5c8k\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"WwV1ikzS30k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-06-16T12:06:05Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Love Story💙 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-06-16T12:06:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"bHp5F2FwnGntzzcNJQTmcUsjE7U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ysP4toSDGL0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-30T07:55:46Z\",\"channelId\":\"UCpxhEyGRH4huNK7LnuiMBaw\",\"title\":\"Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Republic Of Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-30T07:55:46Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2csCwLHNA8or8IvJ3d-NSa6En3o\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"VNovPP-gjDI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-12-24T06:59:23Z\",\"channelId\":\"UCM0ynRzEUoJa1N8dYI6N-Bw\",\"title\":\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi\",\"description\":\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat dance official \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-12-24T06:59:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"SOK-uBz4Kc2orec-1RxdFnnH1es\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"4kyJvjssTko\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T11:10:24Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T11:10:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"JubiiZK2MGCnXrEmQVzgynV5VTU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"vaoC5C7f1Lk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-10-26T22:00:39Z\",\"channelId\":\"UCmX7Iw8rYnSEB3Q-vk3dKjQ\",\"title\":\"Woman Found Bag Of Kittens Outside Her Door ❤️#kitten #catshorts #catlover\",\"description\":\"If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE ❤️ #cat #cats #cute #adorable #cuteanimal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Wholesome Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-10-26T22:00:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DlljWQGh4w-aXQT6h6VC8lsNu0g\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"vMr3Gvjc5sI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-09T16:03:55Z\",\"channelId\":\"UC5qAGb_8OuCGxRYLYA-dWjQ\",\"title\":\"#cat #cute #cats #cats101 #cutecat #trend #trending #shorts #shortvideo #funny #catstory #catbaby\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat story 🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-09T16:03:55Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GymqN78Cd3cBY61YE59x0ogtDu4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qK9foZqrM2I\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T07:19:52Z\",\"channelId\":\"UCj9Hz8i_ZYGvrLqpPVmA31Q\",\"title\":\"Bad 👎Daddy 👨 cat 😳l #shorts #cute #cats #kitty #kittens #catlover #catvideos #catvideo #ai #cutecats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat 😍 shorts \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T07:19:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"sy3iICLNGDxAUIbB2gLpN_4MbI8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mHiMcv9Md84\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-18T11:56:57Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Fears of Sonya&#39;s cat🐱#cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-18T11:56:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"oQ7vT0WL_ZiUSFDGv07w1IEJiZs\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"5gRGKxgD_tY\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-04-30T19:56:00Z\",\"channelId\":\"UCVHgmVPe6qCeJ94wilN5J2A\",\"title\":\"Cat pooing. #cats #catshorts #catvideos #catdrawings #catcartoon #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Stew-Art\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-04-30T19:56:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Q3E6do3xU-2XVNfSuhYz7oD3QJg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mGrCV73lBZ0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-02T10:00:28Z\",\"channelId\":\"UCNtnAu54xWLWGNZmmFy2Apw\",\"title\":\"funny and cute cats #shortvideo #shorts\",\"description\":\"Hello, I'm Mirano, I want to know about the types of animals, their training, keeping and... I will talk about the best and funniest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"MIRANO\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-02T10:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"MhYEGZa35EGkee6odL7MsoDp3TI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"nEQVO8NaA5g\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-12-26T18:08:43Z\",\"channelId\":\"UCxXMf63hyfnGBGVj-M4KoEA\",\"title\":\"Oi ahh Catloaf 😸🍞#catloaf #cats #cutecats #funnycats #pets\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Organic Nature Channel\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-12-26T18:08:43Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DAP1nJb9KKieop801lLnWbMQZA8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"_wyIKHAXZFI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T13:35:00Z\",\"channelId\":\"UClu8wYqI1HvMPbDyeIQrC_w\",\"title\":\"Theekuchi ❤️🥰 cat lover 😾#shorts #viral #funny #cat #shortvideos #trending\",\"description\":\"Theekuchi ❤️ cat lover #shorts #viral #funny #cat #shortvideos #trending.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The BN Family\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Ut2spI_7SzoYf5iQS5QJFoeMF8c\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cJIMjOhhR2g\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-08T11:49:57Z\",\"channelId\":\"UCvMabwJRJ6i-ZUcq2Q64t4Q\",\"title\":\"Orange cat #ai #cats #orangecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Acorn Studios \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-08T11:49:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"1C89HYbSzgrSjkIIWkbdBQgeLx4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wi4xRzrFX0c\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-27T14:00:59Z\",\"channelId\":\"UCHo9E7Rh5_4TEy1yBEsh-AQ\",\"title\":\"Small cute cat is happy and singing APT song 🥰🥰🥰\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"BearyDelivery\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-27T14:00:59Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"HkEQpptYEhNCz9deBarv1X-hZyw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"i_XSK-53PYU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-09T15:34:10Z\",\"channelId\":\"UCPxQQU6qj_l6jHNUELZfiuQ\",\"title\":\"cute cats #cute #kitten #funny #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"PET NATION\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-09T15:34:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"vQqM0utJkC4pTVbicMBL8aLd5ko\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"91z9VAOfUNw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-17T16:29:42Z\",\"channelId\":\"UCYfgXwy99lmmogViQn_3Nzg\",\"title\":\"Cats can understand English #cat #pets #funnypets #funnycats #shorts\",\"description\":\"I do Not own this video. All credits to the original owner. Email for credits or removal.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"LOADING FUNNY CATS \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-17T16:29:42Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"rtu862QIddlOsIN_t9g-F6siruI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RrdKGO012_Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-21T07:47:53Z\",\"channelId\":\"UCi_HGn2j_zhU_NXqRbVbhww\",\"title\":\"What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow Motion\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-21T07:47:53Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"yMh_L1D4ll_JMiosob4e5Czc7lk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tZ-BBAAPYzA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-24T05:00:50Z\",\"channelId\":\"UCYPY4tvo2zKVQ_wF0_CEAIA\",\"title\":\"Dad give me a big whiskas 🥰 #cat #catlover #catvideos #trendingshorts\",\"description\":\"Dad give me a big whiskas #cat #catlover #catvideos #trendingshorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Kak Nurul\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-24T05:00:50Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8Q0Qu37UpBRzffO0d4eSzgf5aDQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NvkDYazj_6Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2019-12-28T21:37:21Z\",\"channelId\":\"UCMFSkaC6CgOh4L3IcVP2P8g\",\"title\":\"Kittens and Cats learn Сatches FISH. 🐟🐠 Too funny |Too cute\",\"description\":\"Kittens and Cats learn Сatches Fish Too funny | Too cute Can any of them catch a fish? When shooting this video, no fish ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Teddy Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2019-12-28T21:37:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"7vuLsLpIX2p2t6gDroFUdmH3xZE\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"co9UUzg26eI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-24T22:57:00Z\",\"channelId\":\"UCFsbNXxagqyUCuhxgBrz6TA\",\"title\":\"Girls with cats vs Boys with cats 😺 #cats #cutecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"FunnyCatTv 10\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-24T22:57:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CGQQAQ\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"KM9NoV0_IUPHwT8RUB4FUjLM0d8\",\"nextPageToken\":\"CMgBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"9ObA9j-MdtGGTM6FGne5wPMiEtA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qhIuSHwBwQI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T19:55:00Z\",\"channelId\":\"UCHU9APgMgi5ebeiMXD4FasA\",\"title\":\"Other Cats Are Cute… But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten\",\"description\":\"facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Paws & Claws\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T19:55:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"mLqrLcFax6Tz-5cHIGNblejev3U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"dAKBqZrkuhc\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-03-31T09:15:22Z\",\"channelId\":\"UCp7VGGSdfi3QDt7JA9GuLMA\",\"title\":\"dancing cat🐱funny dance #shorts ytshorts #viralshorts\",\"description\":\"dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Funny-animals🔥(j.s.d)\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-03-31T09:15:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"tK-o-MTRUGIlDf8ourBDV8R6Oxk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Lw-HvKfC5rU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T09:52:12Z\",\"channelId\":\"UCGXEyVf71QKVRzLYBnQcj5Q\",\"title\":\"SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sunghoonverse☆\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T09:52:12Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GgWSUhZhBEaFs_MS1OC87JHSB78\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"fmwM8WDN2Ig\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T10:54:13Z\",\"channelId\":\"UCd6jSrh0GcECPVig3O2QPoQ\",\"title\":\"Funny Pets | 2024😂 Funny Dogs And Funny Cats Videos 🐱 🐕 😄 #145\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"wk.loverbaby\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T10:54:13Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"iLcRw6eBYyNjJ_R2aaZf40IQToU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ulSiWcHV2yI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-21T01:34:17Z\",\"channelId\":\"UCMTq26KYuWZ2pvgh6F1paLw\",\"title\":\"English speaking cats #funny #funnycats #funnyanimals\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Prank\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-21T01:34:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"MnOBa16ZzFq2U1ds9OQQNJ96OtE\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"AvRQIaBbzdM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T18:56:01Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T18:56:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"enMba_hLkvAx695ARCcvkNe-J-0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"b1xUdDL3zjE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-08-25T02:30:19Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute kitten and monkey run from tiger !!#catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-08-25T02:30:19Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"kkN5DOalTbp4vI8GVlG2MaKfwoA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"PzGI-FBzcNE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2022-09-22T14:15:30Z\",\"channelId\":\"UCw385wfnuiRoB_panBZ1cRQ\",\"title\":\"CATS &amp; KITTENS in 4K | 2 Hours | Relaxing Ambient Piano Music Cute Pets\",\"description\":\"Check out our other *ANIMAL* videos in 4K! https://youtu.be/uYJQIKAVBw8 Part 1 https://youtu.be/PzGI-FBzcNE Part 1 ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"REST EASY FILMS\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2022-09-22T14:15:30Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"BB7gcUKesrWHX5AwNLyFIE_X-LU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"0zSPPDgIZXk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2021-05-25T10:24:00Z\",\"channelId\":\"UCcQUgCWS5o6mo1FN7y3LSPg\",\"title\":\"cute baby cat crying videos | OMG So Cute Cats ♥ Best Funny Cat Videos #09\",\"description\":\"FunnyCats #CuteCats #CatVideos #Cutepets, #pets #petvideo cute baby cat crying videos | OMG So Cute Cats ♥ Best Funny Cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Zon\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2021-05-25T10:24:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"cWMEmzVLqIXD9Uud-pWbH_fd6QY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"f44o15PYQbw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-03T00:30:52Z\",\"channelId\":\"UC5qAGb_8OuCGxRYLYA-dWjQ\",\"title\":\"#cat #cute #cats #cats101 #trend #trending #shorts #shortvideo #catstory #catbaby #cutecat #funny\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat story 🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-03T00:30:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"831QoNj56ZwvU3QRzghE5rihdt4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"6va9g3NQ3t0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T09:08:12Z\",\"channelId\":\"UC9ohc63LryTTWMUsVJlu7zw\",\"title\":\"cute cats 🐈#cat #cute #kitten #pets #cats #catshorts #catvideos #cutecat #catvideos #猫 #猫好き\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"sleep_cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T09:08:12Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2S3vj21C5sTBdVc0D9lbNYOI04w\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mYejx4KJBRM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-12T01:39:35Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute kittens always steals my birthday cake #cutecats #catlover #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-12T01:39:35Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hcQEZ7JiGB9nfWLZu46XnJShtyY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"plMzbkFlLKE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-17T01:33:48Z\",\"channelId\":\"UCJe_P0IbLiftpU372j0RPFQ\",\"title\":\"Cute Cat Became a Squid Game Doll 😱🙀 #cat #cartoon #funny #viral\",\"description\":\"squidgame #cartoon #shorts #global #viralshorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow WORLD\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-17T01:33:48Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"njVhLX2H9CR5Ot7HdSzecnAMheM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8M5E1Vgo1-U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-18T10:49:59Z\",\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"title\":\"CAT DEFEATING GODZILLA 😱😱 [ cat 🆚 godzilla ] #cat #kitten #cute #cutecat #cats #catlover #shorts 20\",\"description\":\"Instagram - instagram.com/catf_untv Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Catfuntv\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-18T10:49:59Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"IqFYuc3nxnFn8h7DGE_0B21c0ao\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kwLnfRJB6pg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T13:01:30Z\",\"channelId\":\"UCprXtjuvPSCjIyr3QZya7Mg\",\"title\":\"cat story 🐈😺🙀 #kitty #cutecats #cartoon #kittycat #subscribe #cute #kitten #catlovers #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ansari Writes\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T13:01:30Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DoiRa5Gs8V7Xrc_skSQdZRmoLes\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"oMvE7gimZes\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-27T00:00:45Z\",\"channelId\":\"UC5T53SKmiND8o0D2I-8SpKQ\",\"title\":\"Other cats VS My cat #cat #cute #cats #cats #funny #pets #kitten#us #US #america\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CoCpet\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-27T00:00:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"lCB22-lar-gosg_T07VGrwE88Mw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"stO-TG6u2BM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-12T02:15:04Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and monkey take my kinderjoy !!#catlover #cutecat #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-12T02:15:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"aw8lstFO01DkMt5mZykhOWjY95w\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"IMkw2thL6k0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-06T08:42:25Z\",\"channelId\":\"UCzrU_uZAvElyiSfOxtJWBKg\",\"title\":\"Cats take care of human babies #cat #catshorts#cute#baby\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lucky cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-06T08:42:25Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"flZZ6pUMbt57SLjvBlyXH5tXPpg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"iKL4GlHoZm4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-14T20:28:08Z\",\"channelId\":\"UCRDeMJLM98LON3D_3RyoxUg\",\"title\":\"Level 10 is rough 💀 #cute #cats #cat #tiktok #fypシ゚viral #funny #kitten #audio\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"matta\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-14T20:28:08Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ww57xTQrivppY8luSE4_8qr4DF8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"92rynZr3O80\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-01T13:52:07Z\",\"channelId\":\"UCQlXtR8aZgjwdsu0jjgBAFw\",\"title\":\"Ai cat dance dudi dudi dum #cat #funny #catlover #catshorts #trending\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CatClips\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-01T13:52:07Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CJYBEAE\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"zkGt4KCDetsVPV6KJt1u40y3n8A\",\"nextPageToken\":\"CPoBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"f2TxVkPRNLpJYzvrWXIj7q_Wabk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"7I3eb5BJih0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-02T01:00:04Z\",\"channelId\":\"UCBmAlqRHJ_fO5TLOjIwoS2A\",\"title\":\"Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Shefali Rakhii\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-02T01:00:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"7F5_h_2ke8u4iQWL8gLmCnSK7IA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RO2UWZAPnQw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-27T09:47:58Z\",\"channelId\":\"UC5jmROOBtTrJFYj2yXUTraQ\",\"title\":\"Cat fish catjhalpree rac in wat 😱A poor mermaid kitten 😿 #cat #ai #catlover #貓 #aicat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ai Game \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-27T09:47:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"umijxWlqN9aljPPVEWRaPVy3tF8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"E17ONCWoXkM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-22T11:00:33Z\",\"channelId\":\"UCe3mDJIOVSbyNMGpr7j8CmA\",\"title\":\"CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON 🥰📺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Salim Ubey\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-22T11:00:33Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AIl90pHafNN_cYETgdG9MLY3ba0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"owBUTRNGaHo\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-11T08:03:27Z\",\"channelId\":\"UCE99_6mOUeCM6oHOgxHtduA\",\"title\":\"Girls Have Cute Cats Boys Have This 💀 (Part 3)\",\"description\":\"Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Grinly\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-11T08:03:27Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"9gZKTu4QY4pQO8fcmydm0ivnbmA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"-DeXyOFd7gk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-05T16:10:58Z\",\"channelId\":\"UC7NY0oUbxinn_3JfcSXCbCQ\",\"title\":\"Billi Ne Chori Kiya Baccha 🥺 #cat video #cute cats #funnyvideo #viralvideo\",\"description\":\"Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \\\"fair use\\\" for purposes such ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"MY CAT NEW FUNNY INDIA\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-05T16:10:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YSyMN8KgDjluhIuHv2sUvkjSx-8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OiEExW8mH6U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-19T11:00:05Z\",\"channelId\":\"UCkWm_x_dKhpHGj8cYitOvgg\",\"title\":\"Cutest Baby Dance compilation with cute cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"NewFunStories\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-19T11:00:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hYsSLMKNEpigB_xqYqQfmYUTUSo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"LDSRtOcd5YQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2021-09-06T12:27:18Z\",\"channelId\":\"UCzGWL8gWM8ttOXD3etiazXw\",\"title\":\"Talking cat comedy videos #talkingcat\",\"description\":\"Talking cat comedy videos #talkingcat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Mantio\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2021-09-06T12:27:18Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"BYmscFqkheh0OQQs_3FEN3rHcz4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kLPbjgwH_X4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-10-14T10:30:27Z\",\"channelId\":\"UCsMRgE1IQFkgGvyfBDh3BAw\",\"title\":\"Sofia and stories about saving a little Kitten\",\"description\":\"Sofia and adventures with kittens 00:00 Sofia and stories about saving a little Kitten 07:40 Sofia lost her kittens 14:34 Sofia and ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Funny Sofia Show\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-10-14T10:30:27Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"bpLRoWO6SXuuyUI4VB9oK0BCzK4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wE8s993ZV-8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-04T09:00:40Z\",\"channelId\":\"UCL__0tJGg6TeyIfEVhSEjtw\",\"title\":\"The kitten approaching the daddy cat to play with him was so cute.\",\"description\":\"A kitten that came close to its daddy cat. A kitten quietly approaches the mother cat while checking her complexion. The father cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lulu the Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-04T09:00:40Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"stjE6u3ygWt8HlNKKmhqJPzvmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1XazWqWbSdk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T13:31:23Z\",\"channelId\":\"UC-Yng3ltZV9d-9jSA-pAjSQ\",\"title\":\"cute cats 😻 #cat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CUTE CAT🥰\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T13:31:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YL-Bgk5NnFaF5K0FU5o2e89Po7U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"v4i0zcfYBh0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-04T13:40:01Z\",\"channelId\":\"UC28haopD28ljl7lVEKkw1PA\",\"title\":\"Caty Ka Naya Mahal 🏠💀 | Mini Vlog #shorts #minivlog #ashortaday #vlog #tranding #cats #cat\",\"description\":\"Huh Caty Ka Naya Mahal | Mini Vlog #shorts #minivlog #ashortaday #vlog #tranding #cats #cat #funny #comedy ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sirf Shreyansh\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-04T13:40:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hViczuswXaY6ASBGoRqALIJx0ns\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"fNYlxliFPf8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-13T02:00:36Z\",\"channelId\":\"UC6xcY7Rtxbwwth-yCzCHWFg\",\"title\":\"Cats Still Singing AiScReam Pt. 2 😹🎤💘 #cat #animallovers #cute #adorably #catlovers #petlovers\",\"description\":\"They're back and they're still not okay These cats are singing their little hearts out to “I LOVE YOU!!!!” by AiScReam — again.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pawfectly Cute\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-13T02:00:36Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"rrmNnSRIjC18MOBTaSBUfJ_o38g\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kV81s3OUUas\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-25T20:00:33Z\",\"channelId\":\"UCcvjpsLIxSceY3bAEdxz1qw\",\"title\":\"Two cats singing the frozen theme song 🥶🎤 #catvideos #cutecats #catlovers #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meowtoon Studio\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-25T20:00:33Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Vk688YWyJYeWgYeAblFVgOgvuY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"02t1zh_AZa0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-04-28T17:26:57Z\",\"channelId\":\"UCQgqUoJTgsbR2vsNRrg8rUQ\",\"title\":\"Dj Looks 😎😻🙀 #viral #youtube #trendingshorts #pets #meow #cat #dj\",\"description\":\"Dj Looks #viral #youtube #trendingshorts #pets #meow #cat #dj.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Chpetoo_05\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-04-28T17:26:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Yq1qvZdmWOk0iBKwR6uYbRm30M0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"rc0TEvLeOyA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-23T02:47:09Z\",\"channelId\":\"UCqYbBfqwrQeF_j5p1rzfkHg\",\"title\":\"pet goat and cat, dog #cute #ytshorts #shorts #trending #pets #funny #cat #goat #dog #animals #video\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute.videos .....1M view\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-23T02:47:09Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"qxkX9GSkb6VA5D2ZAQltNOb1Riw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ipNcdD3U6JU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-12T06:03:17Z\",\"channelId\":\"UCY3HpHanDNHaKJLqUgFyUVQ\",\"title\":\"&quot;Two Cute Cats Dancing in the Rainwater&quot;😻😺😺😻🥀#shortvideo #shortvideo #cute\",\"description\":\"These sweet little creatures will brighten your day and warm your heart. Don't forget to subscribe for more adorable moments! cute ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Moments\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-12T06:03:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eBHv7fCfcharZyhlXy-L8py1X_U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mZq49yYC0NM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-28T10:45:05Z\",\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"title\":\"Fight with Elephant , fighting for daddy 😭😭 , #cat #kitten #cute #trending #cats #cutecat #shorts 9\",\"description\":\"Instagram - instagram.com/catf_untv Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Catfuntv\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-28T10:45:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hvpiAQZUAUd9EOV-Yti00wxWEgc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"jWVYL8p9550\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-19T03:46:56Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!#catlover #cutecat #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-19T03:46:56Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5KUb2EVIVLYR3ND5VCwVWB7DoS0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Mgbgeyz4fPE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-23T14:51:19Z\",\"channelId\":\"UCRjr9St3KF0VBFADnmDxqxQ\",\"title\":\"#120 Funniest Cats And Dogs videos 🐶🐱 #funny #animals #cuteanimals\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pets Universe\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-23T14:51:19Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"PkVGVeqGbQUmRXrwkvO2KUJhyYo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"AlMEuWl912Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-11T09:45:20Z\",\"channelId\":\"UCygdMqeLQVkbDSLXGvb4pYw\",\"title\":\"The cutest meow #shortvideo #funny #funnypetschannel #cat #petschannel #pets #yourcat #funnycats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Jeff Canal\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-11T09:45:20Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CMgBEAE\"}]}"
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 6
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:09:01.631422Z",
"start_time": "2025-05-28T11:09:01.146047Z"
}
},
"cell_type": "code",
"source": [
"val items = df.items.concat()\n",
"items"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_3()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_3\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281112&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 250 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 250, columnsCount = 4&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;,&quot;youtube#searchResult&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;webdtycT-B4LmJXWkBJvVWUmcHY&quot;,&quot;t1vv105IWNG2EOHsMAK2yRtj010&quot;,&quot;2Kd_RVdhCCBb6srFTzcoirkVZro&quot;,&quot;E6nCj0vSvJRjNcEQaFQ2d8spmhM&quot;,&quot;Qg7OO4HOlZZ3YLpsJWVYBt92Kwc&quot;,&quot;13rrjHLEedgFgBm9W24i_MYXOAQ&quot;,&quot;XSVBsAd9es2GZHYdITYk3MBad58&quot;,&quot;pIgN9Ru809WNiPWBtuGlWQAbxCQ&quot;,&quot;YRzi81_jEkZ9ME2DpoKA8Owvew4&quot;,&quot;nST7mcLVAgbEWfHWUuHCcCmznAo&quot;,&quot;nsPQ9fdFl-3JEvRvOGlkl3tQhAU&quot;,&quot;3FMsKvZ4tnjiAOCqvXQe8JdAtQw&quot;,&quot;YARLzvIzFhBix3Ya8nPj0c9txvg&quot;,&quot;5ByqGeQh1pBdfAUU_bOvX2Z4HfU&quot;,&quot;VExjgdmgRBJWooA2pBfuAyzHSvQ&quot;,&quot;ZRWfV7XfiOfkFiGnTg09gFRNA7Q&quot;,&quot;p_f8U8Yr1b-IO4aBb-TfHjU7G6Q&quot;,&quot;eRGtBGQW7bQjHH4WIr_I0NYD6wU&quot;,&quot;Wr7YkmJwDVgmgG5vhP6Nhx54eTg&quot;,&quot;AGVb0f5--fq-CiJ0LWvkczCN6Us&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;videoId: String&bsol;&quot;&gt;videoId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;,&quot;cytJLvf-eVs&quot;,&quot;ASFCURj-2hQ&quot;,&quot;8iY66B5NB2w&quot;,&quot;1TsaNbWEckk&quot;,&quot;3URtTIdnXIk&quot;,&quot;afm0c53xO2o&quot;,&quot;2M1AFRWPpy8&quot;,&quot;o0Dvesp0lQU&quot;,&quot;NsMKvVdEPkw&quot;,&quot;a7K-kWT_C2A&quot;,&quot;BOK8T1HK4S8&quot;,&quot;RFMuw3xpmFE&quot;,&quot;Po098TRdOn4&quot;,&quot;DrpvkCRE2P4&quot;,&quot;OQoukB1VB5k&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: y0sF5xhGreA&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;y0s&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: tpiyEe_CqB4&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;tpi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: wdjpworLSk8&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;wdj&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: MlDtL2hIj-Q&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;MlD&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 1UgJI6O8T2U&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;1Ug&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: cytJLvf-eVs&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;cyt&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: ASFCURj-2hQ&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;ASF&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 8iY66B5NB2w&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;8iY&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 1TsaNbWEckk&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;1Ts&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 3URtTIdnXIk&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;3UR&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: afm0c53xO2o&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;afm&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: 2M1AFRWPpy8&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;2M1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: o0Dvesp0lQU&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;o0D&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: NsMKvVdEPkw&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;NsM&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: a7K-kWT_C2A&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;a7K&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: BOK8T1HK4S8&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;BOK&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: RFMuw3xpmFE&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;RFM&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: Po098TRdOn4&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;Po0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: DrpvkCRE2P4&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;Drp&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#video&bsol;nvideoId: OQoukB1VB5k&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#video&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;videoId: &lt;&sol;span&gt;OQo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;,&quot;2020-02-05T15:49:45Z&quot;,&quot;2024-09-26T03:51:17Z&quot;,&quot;2025-01-31T13:00:16Z&quot;,&quot;2025-05-27T03:57:51Z&quot;,&quot;2025-04-13T13:00:11Z&quot;,&quot;2024-06-26T17:41:01Z&quot;,&quot;2024-06-27T12:23:24Z&quot;,&quot;2024-11-27T00:54:39Z&quot;,&quot;2023-05-06T14:18:05Z&quot;,&quot;2023-07-22T05:27:58Z&quot;,&quot;2024-07-31T14:00:06Z&quot;,&quot;2023-10-08T13:00:29Z&quot;,&quot;2023-01-02T09:46:11Z&quot;,&quot;2023-05-25T10:30:02Z&quot;,&quot;2024-09-05T13:35:00Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCzn2gx8zzhF0A4Utk8TEDNQ&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCkgRhUW4sHt6bQ32dNiQVVg&quot;,&quot;UC8hC-augAnujJeprhjI0YkA&quot;,&quot;UCntAD-sZOPUXRIcw9syL-MQ&quot;,&quot;UCU0nAvDjqfXo1fTA7xn527w&quot;,&quot;UCzznUMJ6TwMKb3voVs_CFvg&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCI7EM9d6P4wRWRjbFXcxUlQ&quot;,&quot;UC0HRkOUeR4l1qwpRf9gLmdA&quot;,&quot;UCI4miDCCAqvOvZxIl5N3CPQ&quot;,&quot;UCDbVjtCeUnZliM4wTkhq2Lg&quot;,&quot;UCsVD3ZguqePDEKaPHUeaIuQ&quot;,&quot;UChB8rMl6iOQbVk0GZ9VPuZg&quot;,&quot;UCuPLku1Zrk6HMr2S51yGkpQ&quot;,&quot;UC6OZkZ7VcRGNMV1uQwnt9Gg&quot;,&quot;UCO5aEyYJeUXv8rxQEvbUMeA&quot;,&quot;UC4-a76b3AGFmdsbIBfMa88A&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals&bsol;&quot;&gt;Baby Cats - Cute and Funny Cat Videos&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts&bsol;&quot;&gt;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing vi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;CATS: Crazy Antics and Unstoppable Chaos&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;This cat is very cute #cats #catscute #world #shorts&bsol;&quot;&gt;This cat is very cute #cats #catscute&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Cat Videos 2025&bsol;&quot;&gt;These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Ca&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou&bsol;&quot;&gt;Kitten Arrival! #CatLovers #CuteCats &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts&bsol;&quot;&gt;Cute cats and kittens steals my kinde&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &amp;#55357;&amp;#56890;&amp;#55357;&amp;#56834;&amp;#55357;&amp;#56834; -EPS1203 #funnycats&bsol;&quot;&gt;LOL Latest Funny Cats Clips Cute Cats&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Kitten meowing to attract cats&quot;,&quot;Funny Cute Cats &amp;#55357;&amp;#56890;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;12 minutes of adorable &amp;#55358;&amp;#56688;cats and kittens videos to keep you smiling &amp;#55357;&amp;#56469;&amp;#55357;&amp;#56837;&bsol;&quot;&gt;12 minutes of adorable &amp;#55358;&amp;#56688;cats and kit&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cats Videos 2023&bsol;&quot;&gt;Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cat&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Cute baby kitten sound &amp;#10084;&amp;#65039; #shorts&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #dog #dogdance #catdance&bsol;&quot;&gt;Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;&quot;&gt;Cute, cuddly, and utterly chaotic! Th&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;&quot;&gt;Hoomans! Rufus here! Cats are my best&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;&quot;&gt;shorts #catvideos #cat #funnycats #ki&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;&quot;&gt;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...&bsol;&quot;&gt;Watching funny baby cats is the harde&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat &amp;#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.&bsol;&quot;&gt;Cat &amp;#38; cute baby laughing video #funny&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...&bsol;&quot;&gt;Funniest video compilation - CATS: Cr&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &amp;#10024; Subscribe to The Scoop for our most ...&bsol;&quot;&gt;You like cats? We got em! No dogs! Ju&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...&bsol;&quot;&gt;LOL Latest Funny Cats Clips Cute Cats&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...&bsol;&quot;&gt;cat meowing to attract cats,cats meow&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...&bsol;&quot;&gt;12 minutes of adorable cats and kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...&bsol;&quot;&gt;Silliest CATS on Earth - Funny Cats V&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...&bsol;&quot;&gt;Funny cat videos | cute cats | Try no&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [12, 16, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;The Pet Collective&quot;,&quot;Rufus&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;The Pet Collective&quot;,&quot;Dancing Cat&quot;,&quot;Aww Animals&quot;,&quot;Toon4&quot;,&quot;CaD Animals&quot;,&quot;ODINKK 06&quot;,&quot;The Pet Collective&quot;,&quot;toyfunnycat&quot;,&quot;Lovie Jennaira&quot;,&quot;CuteAnimalShare&quot;,&quot;Cute Baby Cats 267&quot;,&quot;ThomasTrucker&quot;,&quot;Cat Fun 0&quot;,&quot;Little Love &quot;,&quot;SRH Funny cats&quot;,&quot;Lovely Kittens&quot;,&quot;Pretty Kittens&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;,&quot;2020-02-05T15:49:45Z&quot;,&quot;2024-09-26T03:51:17Z&quot;,&quot;2025-01-31T13:00:16Z&quot;,&quot;2025-05-27T03:57:51Z&quot;,&quot;2025-04-13T13:00:11Z&quot;,&quot;2024-06-26T17:41:01Z&quot;,&quot;2024-06-27T12:23:24Z&quot;,&quot;2024-11-27T00:54:39Z&quot;,&quot;2023-05-06T14:18:05Z&quot;,&quot;2023-07-22T05:27:58Z&quot;,&quot;2024-07-31T14:00:06Z&quot;,&quot;2023-10-08T13:00:29Z&quot;,&quot;2023-01-02T09:46:11Z&quot;,&quot;2023-05-25T10:30:02Z&quot;,&quot;2024-09-05T13:35:00Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-28T13:00:44Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-28T13:00:44Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-28T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2020-04-10T16:00:28Z&bsol;nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ&bsol;ntitle: Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Rufus&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2020-04-10T16:00:28Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2020-04-10T16:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-09-15T22:02:00Z&bsol;nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ&bsol;ntitle: Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute Cat&amp;#55357;&amp;#56369;&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-09-15T22:02:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-09-15T22:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-11-19T19:00:10Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;ndescription: How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-11-19T19:00:10Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-11-19T19:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-14T04:24:22Z&bsol;nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg&bsol;ntitle: &amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Dancing Cat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-14T04:24:22Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-14T04:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2020-02-05T15:49:45Z&bsol;nchannelId: UC8hC-augAnujJeprhjI0YkA&bsol;ntitle: Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals&bsol;ndescription: Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Aww Animals&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2020-02-05T15:49:45Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2020-02-05T15:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-26T03:51:17Z&bsol;nchannelId: UCntAD-sZOPUXRIcw9syL-MQ&bsol;ntitle: Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts&bsol;ndescription: Cat &amp;#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Toon4&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-26T03:51:17Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-26T03:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-31T13:00:16Z&bsol;nchannelId: UCU0nAvDjqfXo1fTA7xn527w&bsol;ntitle: CATS: Crazy Antics and Unstoppable Chaos&bsol;ndescription: Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: CaD Animals&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-31T13:00:16Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-31T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-27T03:57:51Z&bsol;nchannelId: UCzznUMJ6TwMKb3voVs_CFvg&bsol;ntitle: This cat is very cute #cats #catscute #world #shorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: ODINKK 06&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-27T03:57:51Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-27T03:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-04-13T13:00:11Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Cat Videos 2025&bsol;ndescription: You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &amp;#10024; Subscribe to The Scoop for our most ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-04-13T13:00:11Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-04-13T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-06-26T17:41:01Z&bsol;nchannelId: UCI7EM9d6P4wRWRjbFXcxUlQ&bsol;ntitle: Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: toyfunnycat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-06-26T17:41:01Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-06-26T17:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-06-27T12:23:24Z&bsol;nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA&bsol;ntitle: Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Lovie Jennaira&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-06-27T12:23:24Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-06-27T12:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-11-27T00:54:39Z&bsol;nchannelId: UCI4miDCCAqvOvZxIl5N3CPQ&bsol;ntitle: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &amp;#55357;&amp;#56890;&amp;#55357;&amp;#56834;&amp;#55357;&amp;#56834; -EPS1203 #funnycats&bsol;ndescription: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: CuteAnimalShare&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-11-27T00:54:39Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-11-27T00:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-06T14:18:05Z&bsol;nchannelId: UCDbVjtCeUnZliM4wTkhq2Lg&bsol;ntitle: Kitten meowing to attract cats&bsol;ndescription: cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute Baby Cats 267&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-06T14:18:05Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-06T14:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-07-22T05:27:58Z&bsol;nchannelId: UCsVD3ZguqePDEKaPHUeaIuQ&bsol;ntitle: Funny Cute Cats &amp;#55357;&amp;#56890;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: ThomasTrucker&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-07-22T05:27:58Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-07-22T05:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-07-31T14:00:06Z&bsol;nchannelId: UChB8rMl6iOQbVk0GZ9VPuZg&bsol;ntitle: 12 minutes of adorable &amp;#55358;&amp;#56688;cats and kittens videos to keep you smiling &amp;#55357;&amp;#56469;&amp;#55357;&amp;#56837;&bsol;ndescription: 12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cat Fun 0&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-07-31T14:00:06Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-07-31T14:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-10-08T13:00:29Z&bsol;nchannelId: UCuPLku1Zrk6HMr2S51yGkpQ&bsol;ntitle: Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cats Videos 2023&bsol;ndescription: Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Little Love &bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-10-08T13:00:29Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-10-08T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-01-02T09:46:11Z&bsol;nchannelId: UC6OZkZ7VcRGNMV1uQwnt9Gg&bsol;ntitle: &amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;ndescription: Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: SRH Funny cats&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-01-02T09:46:11Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-01-02T09:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-25T10:30:02Z&bsol;nchannelId: UCO5aEyYJeUXv8rxQEvbUMeA&bsol;ntitle: Cute baby kitten sound &amp;#10084;&amp;#65039; #shorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Lovely Kittens&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-25T10:30:02Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-25T10:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-05T13:35:00Z&bsol;nchannelId: UC4-a76b3AGFmdsbIBfMa88A&bsol;ntitle: Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #dog #dogdance #catdance&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Pretty Kittens&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-05T13:35:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-05T13:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281112, rootId: 1560281112, totalRows: 250 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281112) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_3() {\n",
" let elem = document.getElementById(\"iframe_out_3\");\n",
" resize_iframe_out_3(elem);\n",
" setInterval(resize_iframe_out_3, 5000, elem);\n",
" }\n",
" function resize_iframe_out_3(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281113\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">webdtycT-B4LmJXWkBJvVWUmcHY</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">t1vv105IWNG2EOHsMAK2yRtj010</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2Kd_RVdhCCBb6srFTzcoirkVZro</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat&#55357;&#56369;</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">E6nCj0vSvJRjNcEQaFQ2d8spmhM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Qg7OO4HOlZZ3YLpsJWVYBt92Kwc</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">13rrjHLEedgFgBm9W24i_MYXOAQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">cytJLvf-eVs</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-02-05T15:49:45Z</td><td style=\"vertical-align:top\">UC8hC-augAnujJeprhjI0YkA</td><td style=\"vertical-align:top\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Watching funny baby cats is the harde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Aww Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-02-05T15:49:45Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">XSVBsAd9es2GZHYdITYk3MBad58</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ASFCURj-2hQ</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat &#38; cute baby laughing video #funny<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">pIgN9Ru809WNiPWBtuGlWQAbxCQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">8iY66B5NB2w</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-31T13:00:16Z</td><td style=\"vertical-align:top\">UCU0nAvDjqfXo1fTA7xn527w</td><td style=\"vertical-align:top\">CATS: Crazy Antics and Unstoppable Chaos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CaD Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-31T13:00:16Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">YRzi81_jEkZ9ME2DpoKA8Owvew4</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1TsaNbWEckk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T03:57:51Z</td><td style=\"vertical-align:top\">UCzznUMJ6TwMKb3voVs_CFvg</td><td style=\"vertical-align:top\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ODINKK 06</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T03:57:51Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">nST7mcLVAgbEWfHWUuHCcCmznAo</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">3URtTIdnXIk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-13T13:00:11Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">These CATS are too FUNNY! &#55358;&#56611; | New Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-13T13:00:11Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">nsPQ9fdFl-3JEvRvOGlkl3tQhAU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">afm0c53xO2o</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">3FMsKvZ4tnjiAOCqvXQe8JdAtQw</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">2M1AFRWPpy8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-27T12:23:24Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-27T12:23:24Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">YARLzvIzFhBix3Ya8nPj0c9txvg</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">o0Dvesp0lQU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-27T00:54:39Z</td><td style=\"vertical-align:top\">UCI4miDCCAqvOvZxIl5N3CPQ</td><td style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CuteAnimalShare</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-27T00:54:39Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">5ByqGeQh1pBdfAUU_bOvX2Z4HfU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">NsMKvVdEPkw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">VExjgdmgRBJWooA2pBfuAyzHSvQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">a7K-kWT_C2A</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">Funny Cute Cats &#55357;&#56890;</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">ZRWfV7XfiOfkFiGnTg09gFRNA7Q</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">BOK8T1HK4S8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-31T14:00:06Z</td><td style=\"vertical-align:top\">UChB8rMl6iOQbVk0GZ9VPuZg</td><td style=\"vertical-align:top\">12 minutes of adorable &#55358;&#56688;cats and kit<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat Fun 0</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-31T14:00:06Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">p_f8U8Yr1b-IO4aBb-TfHjU7G6Q</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">RFMuw3xpmFE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-10-08T13:00:29Z</td><td style=\"vertical-align:top\">UCuPLku1Zrk6HMr2S51yGkpQ</td><td style=\"vertical-align:top\">Silliest CATS on Earth &#55357;&#56834; Funny Cat<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Love </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-10-08T13:00:29Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">eRGtBGQW7bQjHH4WIr_I0NYD6wU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Po098TRdOn4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-01-02T09:46:11Z</td><td style=\"vertical-align:top\">UC6OZkZ7VcRGNMV1uQwnt9Gg</td><td style=\"vertical-align:top\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SRH Funny cats</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-01-02T09:46:11Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Wr7YkmJwDVgmgG5vhP6Nhx54eTg</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">DrpvkCRE2P4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Cute baby kitten sound &#10084;&#65039; #shorts</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">AGVb0f5--fq-CiJ0LWvkczCN6Us</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">OQoukB1VB5k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-05T13:35:00Z</td><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-05T13:35:00Z</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281113\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":250,\"ncol\":4},\"kotlin_dataframe\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"webdtycT-B4LmJXWkBJvVWUmcHY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"y0sF5xhGreA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"t1vv105IWNG2EOHsMAK2yRtj010\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tpiyEe_CqB4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Kd_RVdhCCBb6srFTzcoirkVZro\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wdjpworLSk8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"E6nCj0vSvJRjNcEQaFQ2d8spmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"MlDtL2hIj-Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Qg7OO4HOlZZ3YLpsJWVYBt92Kwc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1UgJI6O8T2U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"13rrjHLEedgFgBm9W24i_MYXOAQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cytJLvf-eVs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"XSVBsAd9es2GZHYdITYk3MBad58\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ASFCURj-2hQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 &amp; cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"pIgN9Ru809WNiPWBtuGlWQAbxCQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8iY66B5NB2w\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YRzi81_jEkZ9ME2DpoKA8Owvew4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1TsaNbWEckk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nST7mcLVAgbEWfHWUuHCcCmznAo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3URtTIdnXIk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nsPQ9fdFl-3JEvRvOGlkl3tQhAU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"afm0c53xO2o\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3FMsKvZ4tnjiAOCqvXQe8JdAtQw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"2M1AFRWPpy8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YARLzvIzFhBix3Ya8nPj0c9txvg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"o0Dvesp0lQU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5ByqGeQh1pBdfAUU_bOvX2Z4HfU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NsMKvVdEPkw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"VExjgdmgRBJWooA2pBfuAyzHSvQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"a7K-kWT_C2A\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ZRWfV7XfiOfkFiGnTg09gFRNA7Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"BOK8T1HK4S8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"p_f8U8Yr1b-IO4aBb-TfHjU7G6Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RFMuw3xpmFE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eRGtBGQW7bQjHH4WIr_I0NYD6wU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Po098TRdOn4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Wr7YkmJwDVgmgG5vhP6Nhx54eTg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"DrpvkCRE2P4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AGVb0f5--fq-CiJ0LWvkczCN6Us\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OQoukB1VB5k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}]}"
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 7
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:09:36.161028Z",
"start_time": "2025-05-28T11:09:35.864933Z"
}
},
"cell_type": "code",
"source": [
"val videos = items.dropNulls { id.videoId }\n",
" .select { id.videoId named \"id\" and snippet }\n",
" .distinct()\n",
"videos"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_7()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_7\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281120&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 232 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 232, columnsCount = 2&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;,&quot;cytJLvf-eVs&quot;,&quot;ASFCURj-2hQ&quot;,&quot;8iY66B5NB2w&quot;,&quot;1TsaNbWEckk&quot;,&quot;3URtTIdnXIk&quot;,&quot;afm0c53xO2o&quot;,&quot;2M1AFRWPpy8&quot;,&quot;o0Dvesp0lQU&quot;,&quot;NsMKvVdEPkw&quot;,&quot;a7K-kWT_C2A&quot;,&quot;BOK8T1HK4S8&quot;,&quot;RFMuw3xpmFE&quot;,&quot;Po098TRdOn4&quot;,&quot;DrpvkCRE2P4&quot;,&quot;OQoukB1VB5k&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: String&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;,&quot;2020-02-05T15:49:45Z&quot;,&quot;2024-09-26T03:51:17Z&quot;,&quot;2025-01-31T13:00:16Z&quot;,&quot;2025-05-27T03:57:51Z&quot;,&quot;2025-04-13T13:00:11Z&quot;,&quot;2024-06-26T17:41:01Z&quot;,&quot;2024-06-27T12:23:24Z&quot;,&quot;2024-11-27T00:54:39Z&quot;,&quot;2023-05-06T14:18:05Z&quot;,&quot;2023-07-22T05:27:58Z&quot;,&quot;2024-07-31T14:00:06Z&quot;,&quot;2023-10-08T13:00:29Z&quot;,&quot;2023-01-02T09:46:11Z&quot;,&quot;2023-05-25T10:30:02Z&quot;,&quot;2024-09-05T13:35:00Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCzn2gx8zzhF0A4Utk8TEDNQ&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCkgRhUW4sHt6bQ32dNiQVVg&quot;,&quot;UC8hC-augAnujJeprhjI0YkA&quot;,&quot;UCntAD-sZOPUXRIcw9syL-MQ&quot;,&quot;UCU0nAvDjqfXo1fTA7xn527w&quot;,&quot;UCzznUMJ6TwMKb3voVs_CFvg&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCI7EM9d6P4wRWRjbFXcxUlQ&quot;,&quot;UC0HRkOUeR4l1qwpRf9gLmdA&quot;,&quot;UCI4miDCCAqvOvZxIl5N3CPQ&quot;,&quot;UCDbVjtCeUnZliM4wTkhq2Lg&quot;,&quot;UCsVD3ZguqePDEKaPHUeaIuQ&quot;,&quot;UChB8rMl6iOQbVk0GZ9VPuZg&quot;,&quot;UCuPLku1Zrk6HMr2S51yGkpQ&quot;,&quot;UC6OZkZ7VcRGNMV1uQwnt9Gg&quot;,&quot;UCO5aEyYJeUXv8rxQEvbUMeA&quot;,&quot;UC4-a76b3AGFmdsbIBfMa88A&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals&bsol;&quot;&gt;Baby Cats - Cute and Funny Cat Videos&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts&bsol;&quot;&gt;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing vi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;CATS: Crazy Antics and Unstoppable Chaos&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;This cat is very cute #cats #catscute #world #shorts&bsol;&quot;&gt;This cat is very cute #cats #catscute&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Cat Videos 2025&bsol;&quot;&gt;These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Ca&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou&bsol;&quot;&gt;Kitten Arrival! #CatLovers #CuteCats &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts&bsol;&quot;&gt;Cute cats and kittens steals my kinde&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &amp;#55357;&amp;#56890;&amp;#55357;&amp;#56834;&amp;#55357;&amp;#56834; -EPS1203 #funnycats&bsol;&quot;&gt;LOL Latest Funny Cats Clips Cute Cats&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Kitten meowing to attract cats&quot;,&quot;Funny Cute Cats &amp;#55357;&amp;#56890;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;12 minutes of adorable &amp;#55358;&amp;#56688;cats and kittens videos to keep you smiling &amp;#55357;&amp;#56469;&amp;#55357;&amp;#56837;&bsol;&quot;&gt;12 minutes of adorable &amp;#55358;&amp;#56688;cats and kit&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cats Videos 2023&bsol;&quot;&gt;Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cat&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Cute baby kitten sound &amp;#10084;&amp;#65039; #shorts&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #dog #dogdance #catdance&bsol;&quot;&gt;Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;&quot;&gt;Cute, cuddly, and utterly chaotic! Th&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;&quot;&gt;Hoomans! Rufus here! Cats are my best&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;&quot;&gt;shorts #catvideos #cat #funnycats #ki&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;&quot;&gt;How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...&bsol;&quot;&gt;Watching funny baby cats is the harde&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat &amp;#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.&bsol;&quot;&gt;Cat &amp;#38; cute baby laughing video #funny&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...&bsol;&quot;&gt;Funniest video compilation - CATS: Cr&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &amp;#10024; Subscribe to The Scoop for our most ...&bsol;&quot;&gt;You like cats? We got em! No dogs! Ju&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...&bsol;&quot;&gt;LOL Latest Funny Cats Clips Cute Cats&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...&bsol;&quot;&gt;cat meowing to attract cats,cats meow&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...&bsol;&quot;&gt;12 minutes of adorable cats and kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...&bsol;&quot;&gt;Silliest CATS on Earth - Funny Cats V&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...&bsol;&quot;&gt;Funny cat videos | cute cats | Try no&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&quot;,&quot;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;90&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;default: DataRow&lt;*&gt;&bsol;&quot;&gt;default&lt;&sol;span&gt;&quot;, children: [5, 6, 7], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg&bsol;nwidth: 120&bsol;nheight: 90&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;320&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;180&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;medium: DataRow&lt;*&gt;&bsol;&quot;&gt;medium&lt;&sol;span&gt;&quot;, children: [9, 10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg&bsol;nwidth: 320&bsol;nheight: 180&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg&bsol;&quot;&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hq&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;width: Int&bsol;&quot;&gt;width&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;height: Int&bsol;&quot;&gt;height&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;high: DataRow&lt;*&gt;&bsol;&quot;&gt;high&lt;&sol;span&gt;&quot;, children: [13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg&bsol;nwidth: 480&bsol;nheight: 360&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;i.ytimg.com&sol;vi&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thumbnails: DataRow&lt;*&gt;&bsol;&quot;&gt;thumbnails&lt;&sol;span&gt;&quot;, children: [8, 12, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;default: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg, width:120, height:90 }&bsol;nmedium: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg, width:320, height:180 }&bsol;nhigh: { url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg, width:480, height:360 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;default: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;The Pet Collective&quot;,&quot;Rufus&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;The Pet Collective&quot;,&quot;Dancing Cat&quot;,&quot;Aww Animals&quot;,&quot;Toon4&quot;,&quot;CaD Animals&quot;,&quot;ODINKK 06&quot;,&quot;The Pet Collective&quot;,&quot;toyfunnycat&quot;,&quot;Lovie Jennaira&quot;,&quot;CuteAnimalShare&quot;,&quot;Cute Baby Cats 267&quot;,&quot;ThomasTrucker&quot;,&quot;Cat Fun 0&quot;,&quot;Little Love &quot;,&quot;SRH Funny cats&quot;,&quot;Lovely Kittens&quot;,&quot;Pretty Kittens&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;liveBroadcastContent: String&bsol;&quot;&gt;liveBroadcastContent&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;,&quot;none&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishTime: String&bsol;&quot;&gt;publishTime&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;,&quot;2020-02-05T15:49:45Z&quot;,&quot;2024-09-26T03:51:17Z&quot;,&quot;2025-01-31T13:00:16Z&quot;,&quot;2025-05-27T03:57:51Z&quot;,&quot;2025-04-13T13:00:11Z&quot;,&quot;2024-06-26T17:41:01Z&quot;,&quot;2024-06-27T12:23:24Z&quot;,&quot;2024-11-27T00:54:39Z&quot;,&quot;2023-05-06T14:18:05Z&quot;,&quot;2023-07-22T05:27:58Z&quot;,&quot;2024-07-31T14:00:06Z&quot;,&quot;2023-10-08T13:00:29Z&quot;,&quot;2023-01-02T09:46:11Z&quot;,&quot;2023-05-25T10:30:02Z&quot;,&quot;2024-09-05T13:35:00Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;snippet: DataRow&lt;*&gt;&bsol;&quot;&gt;snippet&lt;&sol;span&gt;&quot;, children: [1, 2, 3, 4, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-28T13:00:44Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;y0sF5xhGreA&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-28T13:00:44Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-28T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2020-04-10T16:00:28Z&bsol;nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ&bsol;ntitle: Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;tpiyEe_CqB4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Rufus&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2020-04-10T16:00:28Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2020-04-10T16:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-09-15T22:02:00Z&bsol;nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ&bsol;ntitle: Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;wdjpworLSk8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute Cat&amp;#55357;&amp;#56369;&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-09-15T22:02:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-09-15T22:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-11-19T19:00:10Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: 30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;ndescription: How cute are these kittens!!! &amp;#9786;&amp;#65039; &amp;#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;MlDtL2hIj-Q&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-11-19T19:00:10Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-11-19T19:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-14T04:24:22Z&bsol;nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg&bsol;ntitle: &amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1UgJI6O8T2U&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Dancing Cat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-14T04:24:22Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-14T04:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2020-02-05T15:49:45Z&bsol;nchannelId: UC8hC-augAnujJeprhjI0YkA&bsol;ntitle: Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals&bsol;ndescription: Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;cytJLvf-eVs&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Aww Animals&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2020-02-05T15:49:45Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2020-02-05T15:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-26T03:51:17Z&bsol;nchannelId: UCntAD-sZOPUXRIcw9syL-MQ&bsol;ntitle: Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts&bsol;ndescription: Cat &amp;#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;ASFCURj-2hQ&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Toon4&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-26T03:51:17Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-26T03:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-01-31T13:00:16Z&bsol;nchannelId: UCU0nAvDjqfXo1fTA7xn527w&bsol;ntitle: CATS: Crazy Antics and Unstoppable Chaos&bsol;ndescription: Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;8iY66B5NB2w&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: CaD Animals&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-01-31T13:00:16Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-01-31T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-05-27T03:57:51Z&bsol;nchannelId: UCzznUMJ6TwMKb3voVs_CFvg&bsol;ntitle: This cat is very cute #cats #catscute #world #shorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;1TsaNbWEckk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: ODINKK 06&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-05-27T03:57:51Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-05-27T03:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2025-04-13T13:00:11Z&bsol;nchannelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;ntitle: These CATS are too FUNNY! &amp;#55358;&amp;#56611; | New Cat Videos 2025&bsol;ndescription: You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &amp;#10024; Subscribe to The Scoop for our most ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;3URtTIdnXIk&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: The Pet Collective&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2025-04-13T13:00:11Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2025-04-13T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-06-26T17:41:01Z&bsol;nchannelId: UCI7EM9d6P4wRWRjbFXcxUlQ&bsol;ntitle: Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;afm0c53xO2o&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: toyfunnycat&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-06-26T17:41:01Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-06-26T17:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-06-27T12:23:24Z&bsol;nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA&bsol;ntitle: Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;2M1AFRWPpy8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Lovie Jennaira&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-06-27T12:23:24Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-06-27T12:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-11-27T00:54:39Z&bsol;nchannelId: UCI4miDCCAqvOvZxIl5N3CPQ&bsol;ntitle: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &amp;#55357;&amp;#56890;&amp;#55357;&amp;#56834;&amp;#55357;&amp;#56834; -EPS1203 #funnycats&bsol;ndescription: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;o0Dvesp0lQU&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: CuteAnimalShare&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-11-27T00:54:39Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-11-27T00:5&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-06T14:18:05Z&bsol;nchannelId: UCDbVjtCeUnZliM4wTkhq2Lg&bsol;ntitle: Kitten meowing to attract cats&bsol;ndescription: cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;NsMKvVdEPkw&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cute Baby Cats 267&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-06T14:18:05Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-06T14:1&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-07-22T05:27:58Z&bsol;nchannelId: UCsVD3ZguqePDEKaPHUeaIuQ&bsol;ntitle: Funny Cute Cats &amp;#55357;&amp;#56890;&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;a7K-kWT_C2A&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: ThomasTrucker&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-07-22T05:27:58Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-07-22T05:2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-07-31T14:00:06Z&bsol;nchannelId: UChB8rMl6iOQbVk0GZ9VPuZg&bsol;ntitle: 12 minutes of adorable &amp;#55358;&amp;#56688;cats and kittens videos to keep you smiling &amp;#55357;&amp;#56469;&amp;#55357;&amp;#56837;&bsol;ndescription: 12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;BOK8T1HK4S8&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Cat Fun 0&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-07-31T14:00:06Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-07-31T14:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-10-08T13:00:29Z&bsol;nchannelId: UCuPLku1Zrk6HMr2S51yGkpQ&bsol;ntitle: Silliest CATS on Earth &amp;#55357;&amp;#56834; Funny Cats Videos 2023&bsol;ndescription: Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;RFMuw3xpmFE&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Little Love &bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-10-08T13:00:29Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-10-08T13:0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-01-02T09:46:11Z&bsol;nchannelId: UC6OZkZ7VcRGNMV1uQwnt9Gg&bsol;ntitle: &amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;ndescription: Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...&bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;Po098TRdOn4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: SRH Funny cats&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-01-02T09:46:11Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-01-02T09:4&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2023-05-25T10:30:02Z&bsol;nchannelId: UCO5aEyYJeUXv8rxQEvbUMeA&bsol;ntitle: Cute baby kitten sound &amp;#10084;&amp;#65039; #shorts&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;DrpvkCRE2P4&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Lovely Kittens&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2023-05-25T10:30:02Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2023-05-25T10:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;publishedAt: 2024-09-05T13:35:00Z&bsol;nchannelId: UC4-a76b3AGFmdsbIBfMa88A&bsol;ntitle: Cute Cat Dancing Video (2)&amp;#55357;&amp;#56890;&amp;#55357;&amp;#56845; #cat #dog #dogdance #catdance&bsol;ndescription: &bsol;nthumbnails: { default:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;default.jpg, width:120, height:90 }, medium:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;mqdefault.jpg, width:320, height:180 }, high:{ url:https:&sol;&sol;i.ytimg.com&sol;vi&sol;OQoukB1VB5k&sol;hqdefault.jpg, width:480, height:360 } }&bsol;nchannelTitle: Pretty Kittens&bsol;nliveBroadcastContent: none&bsol;npublishTime: 2024-09-05T13:35:00Z&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;publishedAt: &lt;&sol;span&gt;2024-09-05T13:3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281120, rootId: 1560281120, totalRows: 232 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281120) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_7() {\n",
" let elem = document.getElementById(\"iframe_out_7\");\n",
" resize_iframe_out_7(elem);\n",
" setInterval(resize_iframe_out_7, 5000, elem);\n",
" }\n",
" function resize_iframe_out_7(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281121\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat&#55357;&#56369;</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">cytJLvf-eVs</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-02-05T15:49:45Z</td><td style=\"vertical-align:top\">UC8hC-augAnujJeprhjI0YkA</td><td style=\"vertical-align:top\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Watching funny baby cats is the harde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Aww Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-02-05T15:49:45Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ASFCURj-2hQ</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat &#38; cute baby laughing video #funny<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">8iY66B5NB2w</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-31T13:00:16Z</td><td style=\"vertical-align:top\">UCU0nAvDjqfXo1fTA7xn527w</td><td style=\"vertical-align:top\">CATS: Crazy Antics and Unstoppable Chaos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CaD Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-31T13:00:16Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1TsaNbWEckk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T03:57:51Z</td><td style=\"vertical-align:top\">UCzznUMJ6TwMKb3voVs_CFvg</td><td style=\"vertical-align:top\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ODINKK 06</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T03:57:51Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">3URtTIdnXIk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-13T13:00:11Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">These CATS are too FUNNY! &#55358;&#56611; | New Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-13T13:00:11Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">afm0c53xO2o</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">2M1AFRWPpy8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-27T12:23:24Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-27T12:23:24Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">o0Dvesp0lQU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-27T00:54:39Z</td><td style=\"vertical-align:top\">UCI4miDCCAqvOvZxIl5N3CPQ</td><td style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CuteAnimalShare</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-27T00:54:39Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">NsMKvVdEPkw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">a7K-kWT_C2A</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">Funny Cute Cats &#55357;&#56890;</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">BOK8T1HK4S8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-31T14:00:06Z</td><td style=\"vertical-align:top\">UChB8rMl6iOQbVk0GZ9VPuZg</td><td style=\"vertical-align:top\">12 minutes of adorable &#55358;&#56688;cats and kit<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat Fun 0</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-31T14:00:06Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">RFMuw3xpmFE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-10-08T13:00:29Z</td><td style=\"vertical-align:top\">UCuPLku1Zrk6HMr2S51yGkpQ</td><td style=\"vertical-align:top\">Silliest CATS on Earth &#55357;&#56834; Funny Cat<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Love </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-10-08T13:00:29Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">Po098TRdOn4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-01-02T09:46:11Z</td><td style=\"vertical-align:top\">UC6OZkZ7VcRGNMV1uQwnt9Gg</td><td style=\"vertical-align:top\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SRH Funny cats</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-01-02T09:46:11Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">DrpvkCRE2P4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Cute baby kitten sound &#10084;&#65039; #shorts</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">OQoukB1VB5k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-05T13:35:00Z</td><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-05T13:35:00Z</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281121\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":232,\"ncol\":2},\"kotlin_dataframe\":[{\"id\":\"y0sF5xhGreA\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"tpiyEe_CqB4\",\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"wdjpworLSk8\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"MlDtL2hIj-Q\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"1UgJI6O8T2U\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"cytJLvf-eVs\",\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"ASFCURj-2hQ\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 &amp; cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"8iY66B5NB2w\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"1TsaNbWEckk\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"3URtTIdnXIk\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"afm0c53xO2o\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"2M1AFRWPpy8\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"o0Dvesp0lQU\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"NsMKvVdEPkw\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"a7K-kWT_C2A\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"BOK8T1HK4S8\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"RFMuw3xpmFE\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"Po098TRdOn4\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"DrpvkCRE2P4\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"OQoukB1VB5k\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}]}"
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 9
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:09:41.068829Z",
"start_time": "2025-05-28T11:09:39.782168Z"
}
},
"cell_type": "code",
"source": "val parsed = videos.parse()",
"outputs": [],
"execution_count": 10
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:09:49.784057Z",
"start_time": "2025-05-28T11:09:48.824956Z"
}
},
"cell_type": "code",
"source": [
"val loaded = parsed.convert { colsAtAnyDepth().colsOf<URL>() }.with { IMG(it, maxHeight = 150) }\n",
" .add(\"video\") { IFRAME(\"https://www.youtube.com/embed/$id\") }"
],
"outputs": [],
"execution_count": 11
},
{
"metadata": {},
"cell_type": "markdown",
"source": [
"NOTE: For this example, the DataFrame needs to be rendered as HTML. This means that when running in Kotlin Notebook, \"Render DataFrame tables natively\" needs to be turned off or\n",
"the DataFrame needs to be explicitly converted to HTML when displayed."
]
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:11:04.020296Z",
"start_time": "2025-05-28T11:11:03.732110Z"
}
},
"cell_type": "code",
"source": [
"val clean = loaded.move { snippet.channelId and snippet.channelTitle }.under(\"channel\")\n",
" .move { snippet.title and snippet.publishedAt }.toTop()\n",
" .remove { snippet }\n",
"\n",
"clean.head().toHtml()"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_12()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_12\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281130&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;table class=&quot;dataframe&quot; id=&quot;static_df_1560281131&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;th style=&quot;text-align:left&quot;&gt;id&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;title&lt;&sol;th&gt;&lt;th class=&quot;rightBorder&quot; style=&quot;text-align:left&quot;&gt;publishedAt&lt;&sol;th&gt;&lt;th class=&quot;leftBorder&quot; style=&quot;text-align:left&quot;&gt;channel&lt;&sol;th&gt;&lt;th class=&quot;rightBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;video&lt;&sol;th&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder rightBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder leftBorder&quot; style=&quot;text-align:left&quot;&gt;channelId&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder rightBorder&quot; style=&quot;text-align:left&quot;&gt;channelTitle&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;&sol;tr&gt;&lt;&sol;thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;y0sF5xhGreA&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-05-28T13:00:44Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCPIvT-zcQl2H0vabdXJGcpg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;The Pet Collective&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;tpiyEe_CqB4&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2020-04-10T16:00:28Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCzn2gx8zzhF0A4Utk8TEDNQ&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;Rufus&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;wdjpworLSk8&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-09-15T22:02:00Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCQQcnrcfQbWvCl2lBvF5hoQ&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt; Cute Cat&amp;#55357;&amp;#56369;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;MlDtL2hIj-Q&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-11-19T19:00:10Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCPIvT-zcQl2H0vabdXJGcpg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;The Pet Collective&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;1UgJI6O8T2U&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2025-01-14T04:24:22Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCkgRhUW4sHt6bQ32dNiQVVg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;Dancing Cat&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;&sol;tbody&gt;&lt;&sol;table&gt;\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame [5 x 5]&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: kotlinx.datetime.Instant&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCzn2gx8zzhF0A4Utk8TEDNQ&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCkgRhUW4sHt6bQ32dNiQVVg&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;The Pet Collective&quot;,&quot;Rufus&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;The Pet Collective&quot;,&quot;Dancing Cat&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channel: DataRow&lt;*&gt;&bsol;&quot;&gt;channel&lt;&sol;span&gt;&quot;, children: [3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;nchannelTitle: The Pet Collective&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCPIvT-zcQl2H0va&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCzn2gx8zzhF0A4Utk8TEDNQ&bsol;nchannelTitle: Rufus&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCzn2gx8zzhF0A4U&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCQQcnrcfQbWvCl2lBvF5hoQ&bsol;nchannelTitle: Cute Cat&amp;#55357;&amp;#56369;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCQQcnrcfQbWvCl2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;nchannelTitle: The Pet Collective&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCPIvT-zcQl2H0va&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCkgRhUW4sHt6bQ32dNiQVVg&bsol;nchannelTitle: Dancing Cat&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCkgRhUW4sHt6bQ3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;video: dataTypes.IFRAME&bsol;&quot;&gt;video&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;y0sF5xhGreA&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;tpiyEe_CqB4&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;wdjpworLSk8&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;MlDtL2hIj-Q&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;1UgJI6O8T2U&bsol;&quot; frameborder=0&sol;&gt;&quot;] }, \n",
"], id: 1560281130, rootId: 1560281130, totalRows: 5 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281130) });\n",
"\n",
"document.getElementById(&quot;static_df_1560281131&quot;).style.display = &quot;none&quot;;\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_12() {\n",
" let elem = document.getElementById(\"iframe_out_12\");\n",
" resize_iframe_out_12(elem);\n",
" setInterval(resize_iframe_out_12, 5000, elem);\n",
" }\n",
" function resize_iframe_out_12(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script>"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 14
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:11:21.318364Z",
"start_time": "2025-05-28T11:11:20.140795Z"
}
},
"cell_type": "code",
"source": [
"val statPages = clean.id.chunked(50).map {\n",
" val ids = it.joinToString(\"%2C\")\n",
" load(\"videos?part=statistics&id=$ids\")\n",
"}\n",
"statPages"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_13()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_13\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281132&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 5, columnsCount = 4&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#videoListResponse&quot;,&quot;youtube#videoListResponse&quot;,&quot;youtube#videoListResponse&quot;,&quot;youtube#videoListResponse&quot;,&quot;youtube#videoListResponse&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;si8jURGAyE8nJdcsPVQ_zmnnFtA&quot;,&quot;CAK8IKfEw7jZeCXZv7ecMv2KmsM&quot;,&quot;D8EsZXaxDIYLLyim0rtIJqtUEzs&quot;,&quot;DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ&quot;,&quot;YbFuapJqhyJ-96DMcokZ3WvfiKQ&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;items: DataFrame&lt;*&gt;&bsol;&quot;&gt;items&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1560281133, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281134, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281135, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281136, value: &quot;&lt;b&gt;DataFrame 50 x 4&lt;&sol;b&gt;&quot; },{ frameId: 1560281137, value: &quot;&lt;b&gt;DataFrame 32 x 4&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;totalResults: Int&bsol;&quot;&gt;totalResults&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;32&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;resultsPerPage: Int&bsol;&quot;&gt;resultsPerPage&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;32&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;pageInfo: DataRow&lt;*&gt;&bsol;&quot;&gt;pageInfo&lt;&sol;span&gt;&quot;, children: [3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 50&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPerPage: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 50&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPerPage: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 50&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPerPage: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 50&bsol;nresultsPerPage: 50&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPerPage: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;50&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;totalResults: 32&bsol;nresultsPerPage: 32&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;totalResults: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;32&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;resultsPerPage: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;32&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: DataRow&lt;*&gt;&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [0, 1, 2, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#videoListResponse&bsol;netag: si8jURGAyE8nJdcsPVQ_zmnnFtA&bsol;nitems: kind etag id statistics&bsol;n 0 youtube#video NPemCfyy7gnv4pTM231EcuQwKfg y0sF5xhGreA { viewCount:18909559, likeCount:65910...&bsol;n 1 youtube#video nf9LCeR5y5dadtIGPZrZC6h2i34 tpiyEe_CqB4 { viewCount:15055970, likeCount:10524...&bsol;n 2 youtube#video LqOqjW2s86I9ohCgwVWapCy7c34 wdjpworLSk8 { viewCount:120508334, likeCount:1907...&bsol;n 3 youtube#video _xzjHgolqrY2Oe163SpKSscBESE MlDtL2hIj-Q { viewCount:1371373, likeCount:5922, ...&bsol;n 4 youtube#video lfsa5_RoMR-MoqwpGrVbpSuRaKY 1UgJI6O8T2U { viewCount:15684154, likeCount:16736...&bsol;n 5 youtube#video qFC_5WkhaaJVaSYH8HfIkQDjAYk cytJLvf-eVs { viewCount:37184151, likeCount:24982...&bsol;n 6 youtube#video SvzZQYEW0qnahwUzhj0GarDz3jg ASFCURj-2hQ { viewCount:104732562, favoriteCount:...&bsol;n 7 youtube#video Nk2XmCBOeJB9Ojv2-Q914NO1oHc 8iY66B5NB2w { viewCount:2534065, likeCount:18949,...&bsol;n 8 youtube#video -6_JM4fW64wwL0_cbEE2l1Ts09Y 1TsaNbWEckk { viewCount:1781, likeCount:21, favor...&bsol;n 9 youtube#video ByfBRzk16thUv2obnj0QguABdVM 3URtTIdnXIk { viewCount:882603, likeCount:4336, f...&bsol;n 10 youtube#video cwzrcqifrt5-bqSPs7k5LTDJZhI afm0c53xO2o { viewCount:80092074, likeCount:18383...&bsol;n 11 youtube#video bdb0OGITDwFcBGbojckRKoZJCOQ 2M1AFRWPpy8 { viewCount:156002206, likeCount:1436...&bsol;n 12 youtube#video JLrPwmLNgobFU_iDz5fzGNFNtag o0Dvesp0lQU { viewCount:2574039, likeCount:97428,...&bsol;n 13 youtube#video m8JEgUviblFsV2obece5TYVVzg4 NsMKvVdEPkw { viewCount:371948067, likeCount:3755...&bsol;n 14 youtube#video gJnz3GmzbGNpoccK-_M8EdmPqQs a7K-kWT_C2A { viewCount:86752254, likeCount:31501...&bsol;n 15 youtube#video TMVhimLrkR3wgcXrqCi-BDV6sE4 BOK8T1HK4S8 { viewCount:555221, favoriteCount:0, ...&bsol;n 16 youtube#video 9tx9nxj-89GvtNBra5uuxsJYFoY RFMuw3xpmFE { viewCount:2948360, likeCount:13561,...&bsol;n 17 youtube#video xG2rYA1xcNN434Jyy0ezgBJie-U Po098TRdOn4 { viewCount:57103131, likeCount:91032...&bsol;n 18 youtube#video ml-Qrdib1dqvZHjOfz6ltwWvAMI DrpvkCRE2P4 { viewCount:81447629, likeCount:12567...&bsol;n 19 youtube#video pvdmsqQQwB0dzLXOlAlTqOZkQS0 OQoukB1VB5k { viewCount:88424540, likeCount:90848...&bsol;n...&bsol;n&bsol;npageInfo: { totalResults:50, resultsPerPage:50 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#videoListResponse&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#videoListResponse&bsol;netag: CAK8IKfEw7jZeCXZv7ecMv2KmsM&bsol;nitems: kind etag id statistics&bsol;n 0 youtube#video EzixDnuMfhJNipb5bri_RUB-drc 28O4PxyCG9E { viewCount:99885747, likeCount:36110...&bsol;n 1 youtube#video t-mVQN7JWlEWKzCkOQtfHfcs5tM 8E6NNlyMG8U { viewCount:20745861, likeCount:39269...&bsol;n 2 youtube#video HKTicoyLUFkh4txG_0MQNOmu5LY NlxYY7w1UGU { viewCount:71295598, likeCount:18027...&bsol;n 3 youtube#video Q67yQ0pUV-znSzbLJl8rmcjIWlA Yy0DVnqKHuI { viewCount:8123734, likeCount:55073,...&bsol;n 4 youtube#video 7BwOD9HqhKwwq3P1u7v3biv7dG0 tT377yJJg38 { viewCount:444649648, likeCount:9100...&bsol;n 5 youtube#video CecOM3fLJ3e2UMqF4mbC7wLUeKw Y4GFrpKSL8Y { viewCount:511175, favoriteCount:0, ...&bsol;n 6 youtube#video Z6cnXhXBAZo7MUlHQrTXXgPnwGM zchD6u1s-jc { viewCount:8533754, likeCount:230298...&bsol;n 7 youtube#video V0BY3ao6BnnEwYfnB57H6iqFqg4 9ImL3zkMx2E { viewCount:6071764, likeCount:187053...&bsol;n 8 youtube#video By0TUqXtHel-1AR46Zz05FWCT0c 3AfETaI8Ias { viewCount:23127145, likeCount:14254...&bsol;n 9 youtube#video lgsektZcKk0w8lSv-6lw846bQM8 qK9foZqrM2I { viewCount:19736473, likeCount:38982...&bsol;n 10 youtube#video NB8hSrnzInJ8SZn8nDBmjNo3Ys8 A-M6s_4qo2Y { viewCount:14585648, likeCount:10135...&bsol;n 11 youtube#video d9FoN3ndfxfZhIGDys9YcICQtZI qA_jwg0cjaU { viewCount:1730633, likeCount:56914,...&bsol;n 12 youtube#video D8OIPDbIlvszJnd3HYWcVtyASe8 NvkDYazj_6Q { viewCount:6436450, likeCount:26859,...&bsol;n 13 youtube#video ofGcDpyhuAvIAkGabKzqL7V7qpk EM41yq0OUQ4 { viewCount:4092460, likeCount:65186,...&bsol;n 14 youtube#video SeqV4L9vdPK9l1-5LaXusA26b40 XTi0-Y5xhXA { viewCount:42352995, likeCount:10411...&bsol;n 15 youtube#video Bo_wFa2AmbRyeVqRJE81hJYwtxc FHUbU7ZTIkk { viewCount:4600995, likeCount:39501,...&bsol;n 16 youtube#video Qtk1tx_sZ2IvI6dJMzFpUd04HKE 5ZLlN3JJ5Eg { viewCount:35709, likeCount:887, fav...&bsol;n 17 youtube#video JC_pkwJbPwaaETFOA1PFewq6__c 0AwB4ivE-Uw { viewCount:33729611, likeCount:22657...&bsol;n 18 youtube#video 3q_FAzgK_3pPIinSioDvVrXg2qk rWrwrI_MtqE { viewCount:3289204, favoriteCount:0,...&bsol;n 19 youtube#video MnfFvM1rSo3tjRiVVksebdlXelY adbGYRuZ5OQ { viewCount:27347215, likeCount:27352...&bsol;n...&bsol;n&bsol;npageInfo: { totalResults:50, resultsPerPage:50 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#videoListResponse&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#videoListResponse&bsol;netag: D8EsZXaxDIYLLyim0rtIJqtUEzs&bsol;nitems: kind etag id statistics&bsol;n 0 youtube#video q8u8R5aCj3Mps4a6GkrSYHukgq8 4kyJvjssTko { viewCount:10593, likeCount:965, fav...&bsol;n 1 youtube#video Ysb6cdDDFuR_NIWbFsB2sXay6zo vaoC5C7f1Lk { viewCount:10735648, likeCount:65057...&bsol;n 2 youtube#video oT65CQ3V6KxXotLCKC5HpXS7gow vMr3Gvjc5sI { viewCount:37642, likeCount:104, fav...&bsol;n 3 youtube#video qDb8WinqsLo2A5NvckRj6joxygA mHiMcv9Md84 { viewCount:235453777, likeCount:7521...&bsol;n 4 youtube#video dBLZiBVOU7ySHxmEKzNDzOD-5-M 5gRGKxgD_tY { viewCount:16557316, likeCount:19278...&bsol;n 5 youtube#video MUB2QNOmG110VykjjVo18GcD9Sk mGrCV73lBZ0 { viewCount:136636865, likeCount:5946...&bsol;n 6 youtube#video sgkgir2G75z8RyZY4heU-Ky8biE nEQVO8NaA5g { viewCount:9021911, likeCount:306327...&bsol;n 7 youtube#video m_HobBop7g_Bwhj4ApLwrtJzBfY _wyIKHAXZFI { viewCount:31923429, likeCount:32531...&bsol;n 8 youtube#video Dftq48zrYsZjy_8Ad_JUz10_K0M cJIMjOhhR2g { viewCount:1010213, likeCount:8829, ...&bsol;n 9 youtube#video LZ5eGpgaIu6h_s0hbyGCOmoK9W4 wi4xRzrFX0c { viewCount:1645219, likeCount:34040,...&bsol;n 10 youtube#video ACUKkVNKlUeZphY5OAtXhBp2GSc 91z9VAOfUNw { viewCount:8260945, likeCount:538885...&bsol;n 11 youtube#video o2BBp0J4Y1h67zVg0En6DXxB2qI RrdKGO012_Y { viewCount:89961347, likeCount:20688...&bsol;n 12 youtube#video YPRn-WsaVq54iqxVwJ38Ar_kQ-o tZ-BBAAPYzA { viewCount:11543804, likeCount:79805...&bsol;n 13 youtube#video KqThHrOKNlKvmKa60ZNMSwBzaK4 co9UUzg26eI { viewCount:35618400, likeCount:13887...&bsol;n 14 youtube#video CjBPiO67DWBsV-C_bQxUAt2frSE JNl0Lx6LY-M { viewCount:17510, likeCount:489, fav...&bsol;n 15 youtube#video E_cKfODggyfwL47EuHUj8ujARCg X-i3lAZlY80 { viewCount:362063, likeCount:6109, f...&bsol;n 16 youtube#video 24qLJCCtQPYJBZZfRlmhk9HAWkY 2f-PUl5Vl9w { viewCount:99594, likeCount:425, fav...&bsol;n 17 youtube#video gyHnbSrSZEDA-KDMVq0xoT68eZ0 Kipdk7420e4 { viewCount:31934, likeCount:108, fav...&bsol;n 18 youtube#video b7tWYwX3hHCOsg5H62QtW1BV0ag dTr2Wj_RVLA { viewCount:18316343, likeCount:27059...&bsol;n 19 youtube#video TdHNJklsdZAJA82oXeVXQJoqthU 9xqXMZQ9Zjk { viewCount:4846669, likeCount:169886...&bsol;n...&bsol;n&bsol;npageInfo: { totalResults:50, resultsPerPage:50 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#videoListResponse&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#videoListResponse&bsol;netag: DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ&bsol;nitems: kind etag id statistics&bsol;n 0 youtube#video gqHnIAu6z5DHRGQ-GMgGvtjRtus kwLnfRJB6pg { viewCount:3782, likeCount:222, favo...&bsol;n 1 youtube#video teEHxMi3qz6UH0jWpt7f1LVQcuE oMvE7gimZes { viewCount:796043, likeCount:21262, ...&bsol;n 2 youtube#video 4xh3ZvktjYOgt7mFdpkJo7Ma0Ws stO-TG6u2BM { viewCount:6454552, likeCount:48601,...&bsol;n 3 youtube#video ULgtBmyx7OOltjc8IKTk1AA8lOs IMkw2thL6k0 { viewCount:42812176, likeCount:66275...&bsol;n 4 youtube#video ynKShHWO2UWRHVE68aqnSZD4NHY iKL4GlHoZm4 { viewCount:702630, likeCount:27951, ...&bsol;n 5 youtube#video Hc8MKayMKLDwW_3GBy2s-Si3lEs 92rynZr3O80 { viewCount:6751261, likeCount:45881,...&bsol;n 6 youtube#video OIudHfcGxdKI4luwdX4gZfqfLpQ Xk1JWWdgUqI { viewCount:1551352, likeCount:13912,...&bsol;n 7 youtube#video y_w5hhEnsAb4TfB3VoFuzN73Hqk KBMN56WGPS8 { viewCount:8631576, likeCount:236986...&bsol;n 8 youtube#video waBaGgteAuTpK1zyl6uMFiueObM CkN63zbewCo { viewCount:56486550, likeCount:17354...&bsol;n 9 youtube#video COBjz3DkgHsKYsbGRrOosn0Rn3E dklomBtFzeU { viewCount:9228240, likeCount:253863...&bsol;n 10 youtube#video GXLpUfKZQqJM7edlhOZNCujScW8 JBs0iQcxbsk { viewCount:54540834, likeCount:20962...&bsol;n 11 youtube#video ncc94TVJDL5_9Qt2WoQXmjCtWfM ePizt97VWLI { viewCount:24119132, likeCount:66292...&bsol;n 12 youtube#video tepFQtMqooqOfOtUIMJxj4ciJ6s 36mKrkFyi-A { viewCount:3986768, likeCount:32907,...&bsol;n 13 youtube#video 248MwMgfMfd74eNlDvvKqZgTxBI Q5nArfUCISE { viewCount:14153, likeCount:144, fav...&bsol;n 14 youtube#video l8v3epNY2tUeRGqshWfWHU15Yls T1PMp_p3aKI { viewCount:45930617, likeCount:17945...&bsol;n 15 youtube#video y7ZA07kVecuV5gBciBUQS4JeL9E StSVxZ4fxE4 { viewCount:6782, likeCount:146, favo...&bsol;n 16 youtube#video Y-DyVDrZOCtEokFclTcmk_0l2DU LgzqNceUPP0 { viewCount:3424941, likeCount:213957...&bsol;n 17 youtube#video OXct2yz0BEA0FshJwuS7JguN_hQ bRzmUfrZlBc { viewCount:560195, likeCount:14082, ...&bsol;n 18 youtube#video qSm-tWS2a_6Mwxx0ikhR_hkJLnk uiyipJ99P_A { viewCount:1366083, likeCount:39079,...&bsol;n 19 youtube#video jr3Gttip6CBgEUiHcopE3rUPvoA PpuSotPP1M0 { viewCount:4604465, likeCount:60860,...&bsol;n...&bsol;n&bsol;npageInfo: { totalResults:50, resultsPerPage:50 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#videoListResponse&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;kind: youtube#videoListResponse&bsol;netag: YbFuapJqhyJ-96DMcokZ3WvfiKQ&bsol;nitems: kind etag id statistics&bsol;n 0 youtube#video Kbc1liTsvVnakeW_DlXE2FfJ3fY jWVYL8p9550 { viewCount:14500049, likeCount:98685...&bsol;n 1 youtube#video BEzAF8MusOs4FnR8Ig_E8_xKxV0 Mgbgeyz4fPE { viewCount:16822697, likeCount:47584...&bsol;n 2 youtube#video 0uUiRHuvqnCgt3m0kWGkfKdkzRY AlMEuWl912Q { viewCount:6570809, likeCount:489895...&bsol;n 3 youtube#video mEm1UsNNBqpmhfl_V8_3UCvuPVA g2KJRwjUg9Q { viewCount:285533199, likeCount:8239...&bsol;n 4 youtube#video tfKnbvePbxIpTxZQAtoMLX17PGU peQHKk3jAeo { viewCount:125515836, likeCount:4445...&bsol;n 5 youtube#video x_RkFz4S4HQQCJ-z5EiYE8zAJtE arUBRy0Rkbw { viewCount:40198828, likeCount:89157...&bsol;n 6 youtube#video -8msTmnnCBrQygxYv5At6GWOGr8 tGO0vUswjRo { viewCount:3240, likeCount:150, favo...&bsol;n 7 youtube#video K4N6FEhjUooCMCs3jarVQBTAIio GBN0Y9sA6W8 { viewCount:40030645, likeCount:14276...&bsol;n 8 youtube#video _R-Xeo5OPe6Yqu-BmDyLPb4sZKo O7UKr6DI1VI { viewCount:19020235, likeCount:26434...&bsol;n 9 youtube#video 1LiqK9aL1PrHIkCn9hZt7ietayc V7Rrk7pVbSA { viewCount:2530636, likeCount:22407,...&bsol;n 10 youtube#video LsoM_ZAl6KlhHMRcXTpRt9RXNdk o-F8wZa8uv8 { viewCount:70531062, likeCount:30256...&bsol;n 11 youtube#video kOG4Pa6xyV-x0uBAJPKruED_dQs WpH2ln8pp2w { viewCount:7650478, likeCount:108642...&bsol;n 12 youtube#video Ucx4wtshkbq6jR6owANX1kYBysQ CcFNBwfFkHY { viewCount:399787, likeCount:21196, ...&bsol;n 13 youtube#video DaT-_F8eYDFTG97Vkg5mp0Rt22g LIgiiAc313U { viewCount:25240468, likeCount:10694...&bsol;n 14 youtube#video Urg0uyvfRirfSdrkv9jPuokjL6I UB9hoMsPgEI { viewCount:9708, likeCount:386, favo...&bsol;n 15 youtube#video W50m-RYSof6fB6SfDcj8R5dMXRo U5S0zs22z9g { viewCount:4565509, likeCount:20795,...&bsol;n 16 youtube#video DLUviD3NHERV8xPEXTzYYU0_RCc ORTR9Jz-dCc { viewCount:4913728, likeCount:217651...&bsol;n 17 youtube#video HbBn8EXPHvOIVelW-YKbk3eQZ80 pedELURRt4w { viewCount:65674, likeCount:6390, fa...&bsol;n 18 youtube#video 6o-yyYPGNC8SiXDaO4Q2ei93QZo cLRoARi5nQY { viewCount:22211, favoriteCount:0, c...&bsol;n 19 youtube#video Ld6rUwbAw9nxKZieY2CR66BDc9w PP7toELbdqA { viewCount:57421135, likeCount:15886...&bsol;n...&bsol;n&bsol;npageInfo: { totalResults:32, resultsPerPage:32 }&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;kind: &lt;&sol;span&gt;youtube#videoListResponse&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281132, rootId: 1560281132, totalRows: 5 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;NPemCfyy7gnv4pTM231EcuQwKfg&quot;,&quot;nf9LCeR5y5dadtIGPZrZC6h2i34&quot;,&quot;LqOqjW2s86I9ohCgwVWapCy7c34&quot;,&quot;_xzjHgolqrY2Oe163SpKSscBESE&quot;,&quot;lfsa5_RoMR-MoqwpGrVbpSuRaKY&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: String&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;18909559&quot;,&quot;15055970&quot;,&quot;120508334&quot;,&quot;1371373&quot;,&quot;15684154&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: String?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;65910&quot;,&quot;105244&quot;,&quot;1907714&quot;,&quot;5922&quot;,&quot;167360&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: String&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: String?&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2520&quot;,&quot;5750&quot;,&quot;7049&quot;,&quot;253&quot;,&quot;1183&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;statistics: DataRow&lt;*&gt;&bsol;&quot;&gt;statistics&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 18909559&bsol;nlikeCount: 65910&bsol;nfavoriteCount: 0&bsol;ncommentCount: 2520&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;18909559&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 15055970&bsol;nlikeCount: 105244&bsol;nfavoriteCount: 0&bsol;ncommentCount: 5750&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;15055970&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 120508334&bsol;nlikeCount: 1907714&bsol;nfavoriteCount: 0&bsol;ncommentCount: 7049&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;120508334&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCo...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 1371373&bsol;nlikeCount: 5922&bsol;nfavoriteCount: 0&bsol;ncommentCount: 253&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;1371373&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCoun...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 15684154&bsol;nlikeCount: 167360&bsol;nfavoriteCount: 0&bsol;ncommentCount: 1183&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;15684154&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281133, rootId: 1560281132, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;EzixDnuMfhJNipb5bri_RUB-drc&quot;,&quot;t-mVQN7JWlEWKzCkOQtfHfcs5tM&quot;,&quot;HKTicoyLUFkh4txG_0MQNOmu5LY&quot;,&quot;Q67yQ0pUV-znSzbLJl8rmcjIWlA&quot;,&quot;7BwOD9HqhKwwq3P1u7v3biv7dG0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;28O4PxyCG9E&quot;,&quot;8E6NNlyMG8U&quot;,&quot;NlxYY7w1UGU&quot;,&quot;Yy0DVnqKHuI&quot;,&quot;tT377yJJg38&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: String&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;99885747&quot;,&quot;20745861&quot;,&quot;71295598&quot;,&quot;8123734&quot;,&quot;444649648&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: String?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3611073&quot;,&quot;392698&quot;,&quot;1802779&quot;,&quot;55073&quot;,&quot;9100453&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: String&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: String?&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;167837&quot;,&quot;1084&quot;,&quot;10584&quot;,&quot;20&quot;,&quot;13585&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;statistics: DataRow&lt;*&gt;&bsol;&quot;&gt;statistics&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 99885747&bsol;nlikeCount: 3611073&bsol;nfavoriteCount: 0&bsol;ncommentCount: 167837&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;99885747&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 20745861&bsol;nlikeCount: 392698&bsol;nfavoriteCount: 0&bsol;ncommentCount: 1084&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;20745861&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 71295598&bsol;nlikeCount: 1802779&bsol;nfavoriteCount: 0&bsol;ncommentCount: 10584&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;71295598&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 8123734&bsol;nlikeCount: 55073&bsol;nfavoriteCount: 0&bsol;ncommentCount: 20&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;8123734&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCoun...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 444649648&bsol;nlikeCount: 9100453&bsol;nfavoriteCount: 0&bsol;ncommentCount: 13585&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;444649648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCo...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281134, rootId: 1560281132, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;q8u8R5aCj3Mps4a6GkrSYHukgq8&quot;,&quot;Ysb6cdDDFuR_NIWbFsB2sXay6zo&quot;,&quot;oT65CQ3V6KxXotLCKC5HpXS7gow&quot;,&quot;qDb8WinqsLo2A5NvckRj6joxygA&quot;,&quot;dBLZiBVOU7ySHxmEKzNDzOD-5-M&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;4kyJvjssTko&quot;,&quot;vaoC5C7f1Lk&quot;,&quot;vMr3Gvjc5sI&quot;,&quot;mHiMcv9Md84&quot;,&quot;5gRGKxgD_tY&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: String&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;10593&quot;,&quot;10735648&quot;,&quot;37642&quot;,&quot;235453777&quot;,&quot;16557316&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: String?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;965&quot;,&quot;650573&quot;,&quot;104&quot;,&quot;7521527&quot;,&quot;192783&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: String&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: String&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;13&quot;,&quot;6317&quot;,&quot;1&quot;,&quot;11855&quot;,&quot;8330&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;statistics: DataRow&lt;*&gt;&bsol;&quot;&gt;statistics&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 10593&bsol;nlikeCount: 965&bsol;nfavoriteCount: 0&bsol;ncommentCount: 13&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;10593&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCount:...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 10735648&bsol;nlikeCount: 650573&bsol;nfavoriteCount: 0&bsol;ncommentCount: 6317&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;10735648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 37642&bsol;nlikeCount: 104&bsol;nfavoriteCount: 0&bsol;ncommentCount: 1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;37642&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCount:...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 235453777&bsol;nlikeCount: 7521527&bsol;nfavoriteCount: 0&bsol;ncommentCount: 11855&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;235453777&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCo...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 16557316&bsol;nlikeCount: 192783&bsol;nfavoriteCount: 0&bsol;ncommentCount: 8330&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;16557316&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281135, rootId: 1560281132, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;gqHnIAu6z5DHRGQ-GMgGvtjRtus&quot;,&quot;teEHxMi3qz6UH0jWpt7f1LVQcuE&quot;,&quot;4xh3ZvktjYOgt7mFdpkJo7Ma0Ws&quot;,&quot;ULgtBmyx7OOltjc8IKTk1AA8lOs&quot;,&quot;ynKShHWO2UWRHVE68aqnSZD4NHY&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;kwLnfRJB6pg&quot;,&quot;oMvE7gimZes&quot;,&quot;stO-TG6u2BM&quot;,&quot;IMkw2thL6k0&quot;,&quot;iKL4GlHoZm4&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: String&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3782&quot;,&quot;796043&quot;,&quot;6454552&quot;,&quot;42812176&quot;,&quot;702630&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: String?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;222&quot;,&quot;21262&quot;,&quot;48601&quot;,&quot;662752&quot;,&quot;27951&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: String&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: String?&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;82&quot;,&quot;8&quot;,&quot;1110&quot;,&quot;221&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;statistics: DataRow&lt;*&gt;&bsol;&quot;&gt;statistics&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 3782&bsol;nlikeCount: 222&bsol;nfavoriteCount: 0&bsol;ncommentCount: 0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;3782&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCount: &lt;&sol;span&gt;222&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 796043&bsol;nlikeCount: 21262&bsol;nfavoriteCount: 0&bsol;ncommentCount: 82&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;796043&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCount...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 6454552&bsol;nlikeCount: 48601&bsol;nfavoriteCount: 0&bsol;ncommentCount: 8&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;6454552&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCoun...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 42812176&bsol;nlikeCount: 662752&bsol;nfavoriteCount: 0&bsol;ncommentCount: 1110&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;42812176&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 702630&bsol;nlikeCount: 27951&bsol;nfavoriteCount: 0&bsol;ncommentCount: 221&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;702630&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCount...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281136, rootId: 1560281132, totalRows: 50 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;kind: String&bsol;&quot;&gt;kind&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;,&quot;youtube#video&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;etag: String&bsol;&quot;&gt;etag&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Kbc1liTsvVnakeW_DlXE2FfJ3fY&quot;,&quot;BEzAF8MusOs4FnR8Ig_E8_xKxV0&quot;,&quot;0uUiRHuvqnCgt3m0kWGkfKdkzRY&quot;,&quot;mEm1UsNNBqpmhfl_V8_3UCvuPVA&quot;,&quot;tfKnbvePbxIpTxZQAtoMLX17PGU&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;jWVYL8p9550&quot;,&quot;Mgbgeyz4fPE&quot;,&quot;AlMEuWl912Q&quot;,&quot;g2KJRwjUg9Q&quot;,&quot;peQHKk3jAeo&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: String&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;14500049&quot;,&quot;16822697&quot;,&quot;6570809&quot;,&quot;285533199&quot;,&quot;125515836&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: String?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;98685&quot;,&quot;475844&quot;,&quot;489895&quot;,&quot;823927&quot;,&quot;4445495&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: String&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: String?&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;30&quot;,&quot;2075&quot;,&quot;3930&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;null&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;16604&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;statistics: DataRow&lt;*&gt;&bsol;&quot;&gt;statistics&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 14500049&bsol;nlikeCount: 98685&bsol;nfavoriteCount: 0&bsol;ncommentCount: 30&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;14500049&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 16822697&bsol;nlikeCount: 475844&bsol;nfavoriteCount: 0&bsol;ncommentCount: 2075&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;16822697&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCou...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 6570809&bsol;nlikeCount: 489895&bsol;nfavoriteCount: 0&bsol;ncommentCount: 3930&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;6570809&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCoun...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 285533199&bsol;nlikeCount: 823927&bsol;nfavoriteCount: 0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;285533199&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeC...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;f...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;viewCount: 125515836&bsol;nlikeCount: 4445495&bsol;nfavoriteCount: 0&bsol;ncommentCount: 16604&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;viewCount: &lt;&sol;span&gt;125515836&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;likeCo...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281137, rootId: 1560281132, totalRows: 32 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281132) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_13() {\n",
" let elem = document.getElementById(\"iframe_out_13\");\n",
" resize_iframe_out_13(elem);\n",
" setInterval(resize_iframe_out_13, 5000, elem);\n",
" }\n",
" function resize_iframe_out_13(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281138\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">id</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">items</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">pageInfo</th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">totalResults</th><th class=\"bottomBorder\" style=\"text-align:left\">resultsPerPage</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">si8jURGAyE8nJdcsPVQ_zmnnFtA</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281139\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">NPemCfyy7gnv4pTM231EcuQwKfg</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">18909559</td><td style=\"vertical-align:top\">65910</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2520</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">nf9LCeR5y5dadtIGPZrZC6h2i34</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">15055970</td><td style=\"vertical-align:top\">105244</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5750</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">LqOqjW2s86I9ohCgwVWapCy7c34</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">1907714</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">7049</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">_xzjHgolqrY2Oe163SpKSscBESE</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">1371373</td><td style=\"vertical-align:top\">5922</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">253</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">lfsa5_RoMR-MoqwpGrVbpSuRaKY</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">15684154</td><td style=\"vertical-align:top\">167360</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1183</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">CAK8IKfEw7jZeCXZv7ecMv2KmsM</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281140\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">EzixDnuMfhJNipb5bri_RUB-drc</td><td class=\"rightBorder\" style=\"vertical-align:top\">28O4PxyCG9E</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">99885747</td><td style=\"vertical-align:top\">3611073</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">167837</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">t-mVQN7JWlEWKzCkOQtfHfcs5tM</td><td class=\"rightBorder\" style=\"vertical-align:top\">8E6NNlyMG8U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">20745861</td><td style=\"vertical-align:top\">392698</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1084</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">HKTicoyLUFkh4txG_0MQNOmu5LY</td><td class=\"rightBorder\" style=\"vertical-align:top\">NlxYY7w1UGU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">71295598</td><td style=\"vertical-align:top\">1802779</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">10584</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Q67yQ0pUV-znSzbLJl8rmcjIWlA</td><td class=\"rightBorder\" style=\"vertical-align:top\">Yy0DVnqKHuI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">8123734</td><td style=\"vertical-align:top\">55073</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">20</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">7BwOD9HqhKwwq3P1u7v3biv7dG0</td><td class=\"rightBorder\" style=\"vertical-align:top\">tT377yJJg38</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">444649648</td><td style=\"vertical-align:top\">9100453</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13585</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">D8EsZXaxDIYLLyim0rtIJqtUEzs</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281141\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">q8u8R5aCj3Mps4a6GkrSYHukgq8</td><td class=\"rightBorder\" style=\"vertical-align:top\">4kyJvjssTko</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">10593</td><td style=\"vertical-align:top\">965</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Ysb6cdDDFuR_NIWbFsB2sXay6zo</td><td class=\"rightBorder\" style=\"vertical-align:top\">vaoC5C7f1Lk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">10735648</td><td style=\"vertical-align:top\">650573</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">6317</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">oT65CQ3V6KxXotLCKC5HpXS7gow</td><td class=\"rightBorder\" style=\"vertical-align:top\">vMr3Gvjc5sI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">37642</td><td style=\"vertical-align:top\">104</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">qDb8WinqsLo2A5NvckRj6joxygA</td><td class=\"rightBorder\" style=\"vertical-align:top\">mHiMcv9Md84</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">235453777</td><td style=\"vertical-align:top\">7521527</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">11855</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">dBLZiBVOU7ySHxmEKzNDzOD-5-M</td><td class=\"rightBorder\" style=\"vertical-align:top\">5gRGKxgD_tY</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">16557316</td><td style=\"vertical-align:top\">192783</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">8330</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281142\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">gqHnIAu6z5DHRGQ-GMgGvtjRtus</td><td class=\"rightBorder\" style=\"vertical-align:top\">kwLnfRJB6pg</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">3782</td><td style=\"vertical-align:top\">222</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">0</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">teEHxMi3qz6UH0jWpt7f1LVQcuE</td><td class=\"rightBorder\" style=\"vertical-align:top\">oMvE7gimZes</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">796043</td><td style=\"vertical-align:top\">21262</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">82</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">4xh3ZvktjYOgt7mFdpkJo7Ma0Ws</td><td class=\"rightBorder\" style=\"vertical-align:top\">stO-TG6u2BM</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">6454552</td><td style=\"vertical-align:top\">48601</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">8</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">ULgtBmyx7OOltjc8IKTk1AA8lOs</td><td class=\"rightBorder\" style=\"vertical-align:top\">IMkw2thL6k0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">42812176</td><td style=\"vertical-align:top\">662752</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1110</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">ynKShHWO2UWRHVE68aqnSZD4NHY</td><td class=\"rightBorder\" style=\"vertical-align:top\">iKL4GlHoZm4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">702630</td><td style=\"vertical-align:top\">27951</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">221</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">YbFuapJqhyJ-96DMcokZ3WvfiKQ</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [32 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281143\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Kbc1liTsvVnakeW_DlXE2FfJ3fY</td><td class=\"rightBorder\" style=\"vertical-align:top\">jWVYL8p9550</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">14500049</td><td style=\"vertical-align:top\">98685</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">30</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">BEzAF8MusOs4FnR8Ig_E8_xKxV0</td><td class=\"rightBorder\" style=\"vertical-align:top\">Mgbgeyz4fPE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">16822697</td><td style=\"vertical-align:top\">475844</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2075</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">0uUiRHuvqnCgt3m0kWGkfKdkzRY</td><td class=\"rightBorder\" style=\"vertical-align:top\">AlMEuWl912Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">6570809</td><td style=\"vertical-align:top\">489895</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3930</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">mEm1UsNNBqpmhfl_V8_3UCvuPVA</td><td class=\"rightBorder\" style=\"vertical-align:top\">g2KJRwjUg9Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">285533199</td><td style=\"vertical-align:top\">823927</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">null</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">tfKnbvePbxIpTxZQAtoMLX17PGU</td><td class=\"rightBorder\" style=\"vertical-align:top\">peQHKk3jAeo</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">125515836</td><td style=\"vertical-align:top\">4445495</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">16604</td></tr></tbody></table><p>... showing only top 5 of 32 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">32</td><td style=\"vertical-align:top\">32</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281138\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\"],\"types\":[{\"kind\":\"ColumnGroup\"}],\"nrow\":5,\"ncol\":1},\"kotlin_dataframe\":[{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"si8jURGAyE8nJdcsPVQ_zmnnFtA\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"NPemCfyy7gnv4pTM231EcuQwKfg\",\"id\":\"y0sF5xhGreA\",\"statistics\":{\"data\":{\"viewCount\":\"18909559\",\"likeCount\":\"65910\",\"favoriteCount\":\"0\",\"commentCount\":\"2520\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"nf9LCeR5y5dadtIGPZrZC6h2i34\",\"id\":\"tpiyEe_CqB4\",\"statistics\":{\"data\":{\"viewCount\":\"15055970\",\"likeCount\":\"105244\",\"favoriteCount\":\"0\",\"commentCount\":\"5750\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LqOqjW2s86I9ohCgwVWapCy7c34\",\"id\":\"wdjpworLSk8\",\"statistics\":{\"data\":{\"viewCount\":\"120508334\",\"likeCount\":\"1907714\",\"favoriteCount\":\"0\",\"commentCount\":\"7049\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"_xzjHgolqrY2Oe163SpKSscBESE\",\"id\":\"MlDtL2hIj-Q\",\"statistics\":{\"data\":{\"viewCount\":\"1371373\",\"likeCount\":\"5922\",\"favoriteCount\":\"0\",\"commentCount\":\"253\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"lfsa5_RoMR-MoqwpGrVbpSuRaKY\",\"id\":\"1UgJI6O8T2U\",\"statistics\":{\"data\":{\"viewCount\":\"15684154\",\"likeCount\":\"167360\",\"favoriteCount\":\"0\",\"commentCount\":\"1183\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qFC_5WkhaaJVaSYH8HfIkQDjAYk\",\"id\":\"cytJLvf-eVs\",\"statistics\":{\"data\":{\"viewCount\":\"37184151\",\"likeCount\":\"249829\",\"favoriteCount\":\"0\",\"commentCount\":\"5147\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"SvzZQYEW0qnahwUzhj0GarDz3jg\",\"id\":\"ASFCURj-2hQ\",\"statistics\":{\"data\":{\"viewCount\":\"104732562\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"2161\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Nk2XmCBOeJB9Ojv2-Q914NO1oHc\",\"id\":\"8iY66B5NB2w\",\"statistics\":{\"data\":{\"viewCount\":\"2534065\",\"likeCount\":\"18949\",\"favoriteCount\":\"0\",\"commentCount\":\"611\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"-6_JM4fW64wwL0_cbEE2l1Ts09Y\",\"id\":\"1TsaNbWEckk\",\"statistics\":{\"data\":{\"viewCount\":\"1781\",\"likeCount\":\"21\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ByfBRzk16thUv2obnj0QguABdVM\",\"id\":\"3URtTIdnXIk\",\"statistics\":{\"data\":{\"viewCount\":\"882603\",\"likeCount\":\"4336\",\"favoriteCount\":\"0\",\"commentCount\":\"197\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"cwzrcqifrt5-bqSPs7k5LTDJZhI\",\"id\":\"afm0c53xO2o\",\"statistics\":{\"data\":{\"viewCount\":\"80092074\",\"likeCount\":\"1838343\",\"favoriteCount\":\"0\",\"commentCount\":\"3688\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"bdb0OGITDwFcBGbojckRKoZJCOQ\",\"id\":\"2M1AFRWPpy8\",\"statistics\":{\"data\":{\"viewCount\":\"156002206\",\"likeCount\":\"1436526\",\"favoriteCount\":\"0\",\"commentCount\":\"839\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"JLrPwmLNgobFU_iDz5fzGNFNtag\",\"id\":\"o0Dvesp0lQU\",\"statistics\":{\"data\":{\"viewCount\":\"2574039\",\"likeCount\":\"97428\",\"favoriteCount\":\"0\",\"commentCount\":\"403\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"m8JEgUviblFsV2obece5TYVVzg4\",\"id\":\"NsMKvVdEPkw\",\"statistics\":{\"data\":{\"viewCount\":\"371948067\",\"likeCount\":\"3755234\",\"favoriteCount\":\"0\",\"commentCount\":\"13739\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"gJnz3GmzbGNpoccK-_M8EdmPqQs\",\"id\":\"a7K-kWT_C2A\",\"statistics\":{\"data\":{\"viewCount\":\"86752254\",\"likeCount\":\"3150171\",\"favoriteCount\":\"0\",\"commentCount\":\"18229\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"TMVhimLrkR3wgcXrqCi-BDV6sE4\",\"id\":\"BOK8T1HK4S8\",\"statistics\":{\"data\":{\"viewCount\":\"555221\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"131\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"9tx9nxj-89GvtNBra5uuxsJYFoY\",\"id\":\"RFMuw3xpmFE\",\"statistics\":{\"data\":{\"viewCount\":\"2948360\",\"likeCount\":\"13561\",\"favoriteCount\":\"0\",\"commentCount\":\"706\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"xG2rYA1xcNN434Jyy0ezgBJie-U\",\"id\":\"Po098TRdOn4\",\"statistics\":{\"data\":{\"viewCount\":\"57103131\",\"likeCount\":\"910323\",\"favoriteCount\":\"0\",\"commentCount\":\"3835\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ml-Qrdib1dqvZHjOfz6ltwWvAMI\",\"id\":\"DrpvkCRE2P4\",\"statistics\":{\"data\":{\"viewCount\":\"81447629\",\"likeCount\":\"1256778\",\"favoriteCount\":\"0\",\"commentCount\":\"6520\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"pvdmsqQQwB0dzLXOlAlTqOZkQS0\",\"id\":\"OQoukB1VB5k\",\"statistics\":{\"data\":{\"viewCount\":\"88424540\",\"likeCount\":\"908480\",\"favoriteCount\":\"0\",\"commentCount\":\"1895\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"CAK8IKfEw7jZeCXZv7ecMv2KmsM\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"EzixDnuMfhJNipb5bri_RUB-drc\",\"id\":\"28O4PxyCG9E\",\"statistics\":{\"data\":{\"viewCount\":\"99885747\",\"likeCount\":\"3611073\",\"favoriteCount\":\"0\",\"commentCount\":\"167837\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"t-mVQN7JWlEWKzCkOQtfHfcs5tM\",\"id\":\"8E6NNlyMG8U\",\"statistics\":{\"data\":{\"viewCount\":\"20745861\",\"likeCount\":\"392698\",\"favoriteCount\":\"0\",\"commentCount\":\"1084\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"HKTicoyLUFkh4txG_0MQNOmu5LY\",\"id\":\"NlxYY7w1UGU\",\"statistics\":{\"data\":{\"viewCount\":\"71295598\",\"likeCount\":\"1802779\",\"favoriteCount\":\"0\",\"commentCount\":\"10584\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Q67yQ0pUV-znSzbLJl8rmcjIWlA\",\"id\":\"Yy0DVnqKHuI\",\"statistics\":{\"data\":{\"viewCount\":\"8123734\",\"likeCount\":\"55073\",\"favoriteCount\":\"0\",\"commentCount\":\"20\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"7BwOD9HqhKwwq3P1u7v3biv7dG0\",\"id\":\"tT377yJJg38\",\"statistics\":{\"data\":{\"viewCount\":\"444649648\",\"likeCount\":\"9100453\",\"favoriteCount\":\"0\",\"commentCount\":\"13585\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"CecOM3fLJ3e2UMqF4mbC7wLUeKw\",\"id\":\"Y4GFrpKSL8Y\",\"statistics\":{\"data\":{\"viewCount\":\"511175\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"75\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Z6cnXhXBAZo7MUlHQrTXXgPnwGM\",\"id\":\"zchD6u1s-jc\",\"statistics\":{\"data\":{\"viewCount\":\"8533754\",\"likeCount\":\"230298\",\"favoriteCount\":\"0\",\"commentCount\":\"1556\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"V0BY3ao6BnnEwYfnB57H6iqFqg4\",\"id\":\"9ImL3zkMx2E\",\"statistics\":{\"data\":{\"viewCount\":\"6071764\",\"likeCount\":\"187053\",\"favoriteCount\":\"0\",\"commentCount\":\"2000\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"By0TUqXtHel-1AR46Zz05FWCT0c\",\"id\":\"3AfETaI8Ias\",\"statistics\":{\"data\":{\"viewCount\":\"23127145\",\"likeCount\":\"1425440\",\"favoriteCount\":\"0\",\"commentCount\":\"11555\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"lgsektZcKk0w8lSv-6lw846bQM8\",\"id\":\"qK9foZqrM2I\",\"statistics\":{\"data\":{\"viewCount\":\"19736473\",\"likeCount\":\"389823\",\"favoriteCount\":\"0\",\"commentCount\":\"941\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"NB8hSrnzInJ8SZn8nDBmjNo3Ys8\",\"id\":\"A-M6s_4qo2Y\",\"statistics\":{\"data\":{\"viewCount\":\"14585648\",\"likeCount\":\"101354\",\"favoriteCount\":\"0\",\"commentCount\":\"106\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"d9FoN3ndfxfZhIGDys9YcICQtZI\",\"id\":\"qA_jwg0cjaU\",\"statistics\":{\"data\":{\"viewCount\":\"1730633\",\"likeCount\":\"56914\",\"favoriteCount\":\"0\",\"commentCount\":\"1645\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"D8OIPDbIlvszJnd3HYWcVtyASe8\",\"id\":\"NvkDYazj_6Q\",\"statistics\":{\"data\":{\"viewCount\":\"6436450\",\"likeCount\":\"26859\",\"favoriteCount\":\"0\",\"commentCount\":\"1557\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ofGcDpyhuAvIAkGabKzqL7V7qpk\",\"id\":\"EM41yq0OUQ4\",\"statistics\":{\"data\":{\"viewCount\":\"4092460\",\"likeCount\":\"65186\",\"favoriteCount\":\"0\",\"commentCount\":\"412\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"SeqV4L9vdPK9l1-5LaXusA26b40\",\"id\":\"XTi0-Y5xhXA\",\"statistics\":{\"data\":{\"viewCount\":\"42352995\",\"likeCount\":\"1041137\",\"favoriteCount\":\"0\",\"commentCount\":\"14445\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Bo_wFa2AmbRyeVqRJE81hJYwtxc\",\"id\":\"FHUbU7ZTIkk\",\"statistics\":{\"data\":{\"viewCount\":\"4600995\",\"likeCount\":\"39501\",\"favoriteCount\":\"0\",\"commentCount\":\"370\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Qtk1tx_sZ2IvI6dJMzFpUd04HKE\",\"id\":\"5ZLlN3JJ5Eg\",\"statistics\":{\"data\":{\"viewCount\":\"35709\",\"likeCount\":\"887\",\"favoriteCount\":\"0\",\"commentCount\":\"9\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"JC_pkwJbPwaaETFOA1PFewq6__c\",\"id\":\"0AwB4ivE-Uw\",\"statistics\":{\"data\":{\"viewCount\":\"33729611\",\"likeCount\":\"226574\",\"favoriteCount\":\"0\",\"commentCount\":\"91\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"3q_FAzgK_3pPIinSioDvVrXg2qk\",\"id\":\"rWrwrI_MtqE\",\"statistics\":{\"data\":{\"viewCount\":\"3289204\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"18\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"MnfFvM1rSo3tjRiVVksebdlXelY\",\"id\":\"adbGYRuZ5OQ\",\"statistics\":{\"data\":{\"viewCount\":\"27347215\",\"likeCount\":\"273525\",\"favoriteCount\":\"0\",\"commentCount\":\"810\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"D8EsZXaxDIYLLyim0rtIJqtUEzs\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"q8u8R5aCj3Mps4a6GkrSYHukgq8\",\"id\":\"4kyJvjssTko\",\"statistics\":{\"data\":{\"viewCount\":\"10593\",\"likeCount\":\"965\",\"favoriteCount\":\"0\",\"commentCount\":\"13\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ysb6cdDDFuR_NIWbFsB2sXay6zo\",\"id\":\"vaoC5C7f1Lk\",\"statistics\":{\"data\":{\"viewCount\":\"10735648\",\"likeCount\":\"650573\",\"favoriteCount\":\"0\",\"commentCount\":\"6317\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"oT65CQ3V6KxXotLCKC5HpXS7gow\",\"id\":\"vMr3Gvjc5sI\",\"statistics\":{\"data\":{\"viewCount\":\"37642\",\"likeCount\":\"104\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qDb8WinqsLo2A5NvckRj6joxygA\",\"id\":\"mHiMcv9Md84\",\"statistics\":{\"data\":{\"viewCount\":\"235453777\",\"likeCount\":\"7521527\",\"favoriteCount\":\"0\",\"commentCount\":\"11855\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"dBLZiBVOU7ySHxmEKzNDzOD-5-M\",\"id\":\"5gRGKxgD_tY\",\"statistics\":{\"data\":{\"viewCount\":\"16557316\",\"likeCount\":\"192783\",\"favoriteCount\":\"0\",\"commentCount\":\"8330\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"MUB2QNOmG110VykjjVo18GcD9Sk\",\"id\":\"mGrCV73lBZ0\",\"statistics\":{\"data\":{\"viewCount\":\"136636865\",\"likeCount\":\"5946364\",\"favoriteCount\":\"0\",\"commentCount\":\"9033\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"sgkgir2G75z8RyZY4heU-Ky8biE\",\"id\":\"nEQVO8NaA5g\",\"statistics\":{\"data\":{\"viewCount\":\"9021911\",\"likeCount\":\"306327\",\"favoriteCount\":\"0\",\"commentCount\":\"9566\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"m_HobBop7g_Bwhj4ApLwrtJzBfY\",\"id\":\"_wyIKHAXZFI\",\"statistics\":{\"data\":{\"viewCount\":\"31923429\",\"likeCount\":\"325312\",\"favoriteCount\":\"0\",\"commentCount\":\"39\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Dftq48zrYsZjy_8Ad_JUz10_K0M\",\"id\":\"cJIMjOhhR2g\",\"statistics\":{\"data\":{\"viewCount\":\"1010213\",\"likeCount\":\"8829\",\"favoriteCount\":\"0\",\"commentCount\":\"305\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LZ5eGpgaIu6h_s0hbyGCOmoK9W4\",\"id\":\"wi4xRzrFX0c\",\"statistics\":{\"data\":{\"viewCount\":\"1645219\",\"likeCount\":\"34040\",\"favoriteCount\":\"0\",\"commentCount\":\"465\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ACUKkVNKlUeZphY5OAtXhBp2GSc\",\"id\":\"91z9VAOfUNw\",\"statistics\":{\"data\":{\"viewCount\":\"8260945\",\"likeCount\":\"538885\",\"favoriteCount\":\"0\",\"commentCount\":\"3208\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"o2BBp0J4Y1h67zVg0En6DXxB2qI\",\"id\":\"RrdKGO012_Y\",\"statistics\":{\"data\":{\"viewCount\":\"89961347\",\"likeCount\":\"2068896\",\"favoriteCount\":\"0\",\"commentCount\":\"10840\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"YPRn-WsaVq54iqxVwJ38Ar_kQ-o\",\"id\":\"tZ-BBAAPYzA\",\"statistics\":{\"data\":{\"viewCount\":\"11543804\",\"likeCount\":\"79805\",\"favoriteCount\":\"0\",\"commentCount\":\"136\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"KqThHrOKNlKvmKa60ZNMSwBzaK4\",\"id\":\"co9UUzg26eI\",\"statistics\":{\"data\":{\"viewCount\":\"35618400\",\"likeCount\":\"1388778\",\"favoriteCount\":\"0\",\"commentCount\":\"16639\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"CjBPiO67DWBsV-C_bQxUAt2frSE\",\"id\":\"JNl0Lx6LY-M\",\"statistics\":{\"data\":{\"viewCount\":\"17510\",\"likeCount\":\"489\",\"favoriteCount\":\"0\",\"commentCount\":\"3\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"E_cKfODggyfwL47EuHUj8ujARCg\",\"id\":\"X-i3lAZlY80\",\"statistics\":{\"data\":{\"viewCount\":\"362063\",\"likeCount\":\"6109\",\"favoriteCount\":\"0\",\"commentCount\":\"86\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"24qLJCCtQPYJBZZfRlmhk9HAWkY\",\"id\":\"2f-PUl5Vl9w\",\"statistics\":{\"data\":{\"viewCount\":\"99594\",\"likeCount\":\"425\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"gyHnbSrSZEDA-KDMVq0xoT68eZ0\",\"id\":\"Kipdk7420e4\",\"statistics\":{\"data\":{\"viewCount\":\"31934\",\"likeCount\":\"108\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"b7tWYwX3hHCOsg5H62QtW1BV0ag\",\"id\":\"dTr2Wj_RVLA\",\"statistics\":{\"data\":{\"viewCount\":\"18316343\",\"likeCount\":\"270590\",\"favoriteCount\":\"0\",\"commentCount\":\"86\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"TdHNJklsdZAJA82oXeVXQJoqthU\",\"id\":\"9xqXMZQ9Zjk\",\"statistics\":{\"data\":{\"viewCount\":\"4846669\",\"likeCount\":\"169886\",\"favoriteCount\":\"0\",\"commentCount\":\"907\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"gqHnIAu6z5DHRGQ-GMgGvtjRtus\",\"id\":\"kwLnfRJB6pg\",\"statistics\":{\"data\":{\"viewCount\":\"3782\",\"likeCount\":\"222\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"teEHxMi3qz6UH0jWpt7f1LVQcuE\",\"id\":\"oMvE7gimZes\",\"statistics\":{\"data\":{\"viewCount\":\"796043\",\"likeCount\":\"21262\",\"favoriteCount\":\"0\",\"commentCount\":\"82\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"4xh3ZvktjYOgt7mFdpkJo7Ma0Ws\",\"id\":\"stO-TG6u2BM\",\"statistics\":{\"data\":{\"viewCount\":\"6454552\",\"likeCount\":\"48601\",\"favoriteCount\":\"0\",\"commentCount\":\"8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ULgtBmyx7OOltjc8IKTk1AA8lOs\",\"id\":\"IMkw2thL6k0\",\"statistics\":{\"data\":{\"viewCount\":\"42812176\",\"likeCount\":\"662752\",\"favoriteCount\":\"0\",\"commentCount\":\"1110\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ynKShHWO2UWRHVE68aqnSZD4NHY\",\"id\":\"iKL4GlHoZm4\",\"statistics\":{\"data\":{\"viewCount\":\"702630\",\"likeCount\":\"27951\",\"favoriteCount\":\"0\",\"commentCount\":\"221\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Hc8MKayMKLDwW_3GBy2s-Si3lEs\",\"id\":\"92rynZr3O80\",\"statistics\":{\"data\":{\"viewCount\":\"6751261\",\"likeCount\":\"45881\",\"favoriteCount\":\"0\",\"commentCount\":\"376\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"OIudHfcGxdKI4luwdX4gZfqfLpQ\",\"id\":\"Xk1JWWdgUqI\",\"statistics\":{\"data\":{\"viewCount\":\"1551352\",\"likeCount\":\"13912\",\"favoriteCount\":\"0\",\"commentCount\":\"19\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"y_w5hhEnsAb4TfB3VoFuzN73Hqk\",\"id\":\"KBMN56WGPS8\",\"statistics\":{\"data\":{\"viewCount\":\"8631576\",\"likeCount\":\"236986\",\"favoriteCount\":\"0\",\"commentCount\":\"338\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"waBaGgteAuTpK1zyl6uMFiueObM\",\"id\":\"CkN63zbewCo\",\"statistics\":{\"data\":{\"viewCount\":\"56486550\",\"likeCount\":\"1735470\",\"favoriteCount\":\"0\",\"commentCount\":\"7730\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"COBjz3DkgHsKYsbGRrOosn0Rn3E\",\"id\":\"dklomBtFzeU\",\"statistics\":{\"data\":{\"viewCount\":\"9228240\",\"likeCount\":\"253863\",\"favoriteCount\":\"0\",\"commentCount\":\"4272\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"GXLpUfKZQqJM7edlhOZNCujScW8\",\"id\":\"JBs0iQcxbsk\",\"statistics\":{\"data\":{\"viewCount\":\"54540834\",\"likeCount\":\"2096230\",\"favoriteCount\":\"0\",\"commentCount\":\"15131\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ncc94TVJDL5_9Qt2WoQXmjCtWfM\",\"id\":\"ePizt97VWLI\",\"statistics\":{\"data\":{\"viewCount\":\"24119132\",\"likeCount\":\"662927\",\"favoriteCount\":\"0\",\"commentCount\":\"3326\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"tepFQtMqooqOfOtUIMJxj4ciJ6s\",\"id\":\"36mKrkFyi-A\",\"statistics\":{\"data\":{\"viewCount\":\"3986768\",\"likeCount\":\"32907\",\"favoriteCount\":\"0\",\"commentCount\":\"193\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"248MwMgfMfd74eNlDvvKqZgTxBI\",\"id\":\"Q5nArfUCISE\",\"statistics\":{\"data\":{\"viewCount\":\"14153\",\"likeCount\":\"144\",\"favoriteCount\":\"0\",\"commentCount\":\"2\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"l8v3epNY2tUeRGqshWfWHU15Yls\",\"id\":\"T1PMp_p3aKI\",\"statistics\":{\"data\":{\"viewCount\":\"45930617\",\"likeCount\":\"1794505\",\"favoriteCount\":\"0\",\"commentCount\":\"104672\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"y7ZA07kVecuV5gBciBUQS4JeL9E\",\"id\":\"StSVxZ4fxE4\",\"statistics\":{\"data\":{\"viewCount\":\"6782\",\"likeCount\":\"146\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Y-DyVDrZOCtEokFclTcmk_0l2DU\",\"id\":\"LgzqNceUPP0\",\"statistics\":{\"data\":{\"viewCount\":\"3424941\",\"likeCount\":\"213957\",\"favoriteCount\":\"0\",\"commentCount\":\"791\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"OXct2yz0BEA0FshJwuS7JguN_hQ\",\"id\":\"bRzmUfrZlBc\",\"statistics\":{\"data\":{\"viewCount\":\"560195\",\"likeCount\":\"14082\",\"favoriteCount\":\"0\",\"commentCount\":\"173\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qSm-tWS2a_6Mwxx0ikhR_hkJLnk\",\"id\":\"uiyipJ99P_A\",\"statistics\":{\"data\":{\"viewCount\":\"1366083\",\"likeCount\":\"39079\",\"favoriteCount\":\"0\",\"commentCount\":\"363\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"jr3Gttip6CBgEUiHcopE3rUPvoA\",\"id\":\"PpuSotPP1M0\",\"statistics\":{\"data\":{\"viewCount\":\"4604465\",\"likeCount\":\"60860\",\"favoriteCount\":\"0\",\"commentCount\":\"161\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"YbFuapJqhyJ-96DMcokZ3WvfiKQ\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"Kbc1liTsvVnakeW_DlXE2FfJ3fY\",\"id\":\"jWVYL8p9550\",\"statistics\":{\"data\":{\"viewCount\":\"14500049\",\"likeCount\":\"98685\",\"favoriteCount\":\"0\",\"commentCount\":\"30\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"BEzAF8MusOs4FnR8Ig_E8_xKxV0\",\"id\":\"Mgbgeyz4fPE\",\"statistics\":{\"data\":{\"viewCount\":\"16822697\",\"likeCount\":\"475844\",\"favoriteCount\":\"0\",\"commentCount\":\"2075\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"0uUiRHuvqnCgt3m0kWGkfKdkzRY\",\"id\":\"AlMEuWl912Q\",\"statistics\":{\"data\":{\"viewCount\":\"6570809\",\"likeCount\":\"489895\",\"favoriteCount\":\"0\",\"commentCount\":\"3930\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"mEm1UsNNBqpmhfl_V8_3UCvuPVA\",\"id\":\"g2KJRwjUg9Q\",\"statistics\":{\"data\":{\"viewCount\":\"285533199\",\"likeCount\":\"823927\",\"favoriteCount\":\"0\",\"commentCount\":null},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"tfKnbvePbxIpTxZQAtoMLX17PGU\",\"id\":\"peQHKk3jAeo\",\"statistics\":{\"data\":{\"viewCount\":\"125515836\",\"likeCount\":\"4445495\",\"favoriteCount\":\"0\",\"commentCount\":\"16604\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"x_RkFz4S4HQQCJ-z5EiYE8zAJtE\",\"id\":\"arUBRy0Rkbw\",\"statistics\":{\"data\":{\"viewCount\":\"40198828\",\"likeCount\":\"891578\",\"favoriteCount\":\"0\",\"commentCount\":\"1351\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"-8msTmnnCBrQygxYv5At6GWOGr8\",\"id\":\"tGO0vUswjRo\",\"statistics\":{\"data\":{\"viewCount\":\"3240\",\"likeCount\":\"150\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"K4N6FEhjUooCMCs3jarVQBTAIio\",\"id\":\"GBN0Y9sA6W8\",\"statistics\":{\"data\":{\"viewCount\":\"40030645\",\"likeCount\":\"142766\",\"favoriteCount\":\"0\",\"commentCount\":\"5357\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"_R-Xeo5OPe6Yqu-BmDyLPb4sZKo\",\"id\":\"O7UKr6DI1VI\",\"statistics\":{\"data\":{\"viewCount\":\"19020235\",\"likeCount\":\"264349\",\"favoriteCount\":\"0\",\"commentCount\":\"164\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"1LiqK9aL1PrHIkCn9hZt7ietayc\",\"id\":\"V7Rrk7pVbSA\",\"statistics\":{\"data\":{\"viewCount\":\"2530636\",\"likeCount\":\"22407\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LsoM_ZAl6KlhHMRcXTpRt9RXNdk\",\"id\":\"o-F8wZa8uv8\",\"statistics\":{\"data\":{\"viewCount\":\"70531062\",\"likeCount\":\"3025682\",\"favoriteCount\":\"0\",\"commentCount\":\"7842\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"kOG4Pa6xyV-x0uBAJPKruED_dQs\",\"id\":\"WpH2ln8pp2w\",\"statistics\":{\"data\":{\"viewCount\":\"7650478\",\"likeCount\":\"108642\",\"favoriteCount\":\"0\",\"commentCount\":\"33\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ucx4wtshkbq6jR6owANX1kYBysQ\",\"id\":\"CcFNBwfFkHY\",\"statistics\":{\"data\":{\"viewCount\":\"399787\",\"likeCount\":\"21196\",\"favoriteCount\":\"0\",\"commentCount\":\"159\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"DaT-_F8eYDFTG97Vkg5mp0Rt22g\",\"id\":\"LIgiiAc313U\",\"statistics\":{\"data\":{\"viewCount\":\"25240468\",\"likeCount\":\"1069479\",\"favoriteCount\":\"0\",\"commentCount\":\"5073\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Urg0uyvfRirfSdrkv9jPuokjL6I\",\"id\":\"UB9hoMsPgEI\",\"statistics\":{\"data\":{\"viewCount\":\"9708\",\"likeCount\":\"386\",\"favoriteCount\":\"0\",\"commentCount\":\"7\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"W50m-RYSof6fB6SfDcj8R5dMXRo\",\"id\":\"U5S0zs22z9g\",\"statistics\":{\"data\":{\"viewCount\":\"4565509\",\"likeCount\":\"20795\",\"favoriteCount\":\"0\",\"commentCount\":\"414\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"DLUviD3NHERV8xPEXTzYYU0_RCc\",\"id\":\"ORTR9Jz-dCc\",\"statistics\":{\"data\":{\"viewCount\":\"4913728\",\"likeCount\":\"217651\",\"favoriteCount\":\"0\",\"commentCount\":\"670\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"HbBn8EXPHvOIVelW-YKbk3eQZ80\",\"id\":\"pedELURRt4w\",\"statistics\":{\"data\":{\"viewCount\":\"65674\",\"likeCount\":\"6390\",\"favoriteCount\":\"0\",\"commentCount\":\"99\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"6o-yyYPGNC8SiXDaO4Q2ei93QZo\",\"id\":\"cLRoARi5nQY\",\"statistics\":{\"data\":{\"viewCount\":\"22211\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ld6rUwbAw9nxKZieY2CR66BDc9w\",\"id\":\"PP7toELbdqA\",\"statistics\":{\"data\":{\"viewCount\":\"57421135\",\"likeCount\":\"158866\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":32}},\"pageInfo\":{\"data\":{\"totalResults\":32,\"resultsPerPage\":32},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}}]}"
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 15
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:11:31.548465Z",
"start_time": "2025-05-28T11:11:31.235185Z"
}
},
"cell_type": "code",
"source": [
"val stats = statPages.items.concat().select { id and statistics.allCols() }.parse()\n",
"stats"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_16()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_16\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281158&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 232 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 232, columnsCount = 5&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;,&quot;cytJLvf-eVs&quot;,&quot;ASFCURj-2hQ&quot;,&quot;8iY66B5NB2w&quot;,&quot;1TsaNbWEckk&quot;,&quot;3URtTIdnXIk&quot;,&quot;afm0c53xO2o&quot;,&quot;2M1AFRWPpy8&quot;,&quot;o0Dvesp0lQU&quot;,&quot;NsMKvVdEPkw&quot;,&quot;a7K-kWT_C2A&quot;,&quot;BOK8T1HK4S8&quot;,&quot;RFMuw3xpmFE&quot;,&quot;Po098TRdOn4&quot;,&quot;DrpvkCRE2P4&quot;,&quot;OQoukB1VB5k&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: Int&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;18909559&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;15055970&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120508334&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1371373&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;15684154&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;37184151&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;104732562&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2534065&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1781&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;882603&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;80092074&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;156002206&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2574039&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;371948067&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;86752254&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;555221&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2948360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;57103131&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;81447629&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;88424540&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: Int?&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;65910&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;105244&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1907714&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;5922&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;167360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;249829&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;null&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;18949&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;21&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;4336&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1838343&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1436526&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;97428&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;3755234&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;3150171&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;null&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;13561&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;910323&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1256778&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;908480&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: Int&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: Int?&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2520&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;5750&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;7049&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;253&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1183&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;5147&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2161&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;611&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;197&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;3688&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;839&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;403&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;13739&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;18229&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;131&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;706&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;3835&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;6520&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1895&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281158, rootId: 1560281158, totalRows: 232 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281158) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_16() {\n",
" let elem = document.getElementById(\"iframe_out_16\");\n",
" resize_iframe_out_16(elem);\n",
" setInterval(resize_iframe_out_16, 5000, elem);\n",
" }\n",
" function resize_iframe_out_16(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281159\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">id</th><th class=\"bottomBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">y0sF5xhGreA</td><td style=\"vertical-align:top\">18909559</td><td style=\"vertical-align:top\">65910</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2520</td></tr><tr><td style=\"vertical-align:top\">tpiyEe_CqB4</td><td style=\"vertical-align:top\">15055970</td><td style=\"vertical-align:top\">105244</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5750</td></tr><tr><td style=\"vertical-align:top\">wdjpworLSk8</td><td style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">1907714</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">7049</td></tr><tr><td style=\"vertical-align:top\">MlDtL2hIj-Q</td><td style=\"vertical-align:top\">1371373</td><td style=\"vertical-align:top\">5922</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">253</td></tr><tr><td style=\"vertical-align:top\">1UgJI6O8T2U</td><td style=\"vertical-align:top\">15684154</td><td style=\"vertical-align:top\">167360</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1183</td></tr><tr><td style=\"vertical-align:top\">cytJLvf-eVs</td><td style=\"vertical-align:top\">37184151</td><td style=\"vertical-align:top\">249829</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5147</td></tr><tr><td style=\"vertical-align:top\">ASFCURj-2hQ</td><td style=\"vertical-align:top\">104732562</td><td style=\"vertical-align:top\">null</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2161</td></tr><tr><td style=\"vertical-align:top\">8iY66B5NB2w</td><td style=\"vertical-align:top\">2534065</td><td style=\"vertical-align:top\">18949</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">611</td></tr><tr><td style=\"vertical-align:top\">1TsaNbWEckk</td><td style=\"vertical-align:top\">1781</td><td style=\"vertical-align:top\">21</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">0</td></tr><tr><td style=\"vertical-align:top\">3URtTIdnXIk</td><td style=\"vertical-align:top\">882603</td><td style=\"vertical-align:top\">4336</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">197</td></tr><tr><td style=\"vertical-align:top\">afm0c53xO2o</td><td style=\"vertical-align:top\">80092074</td><td style=\"vertical-align:top\">1838343</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3688</td></tr><tr><td style=\"vertical-align:top\">2M1AFRWPpy8</td><td style=\"vertical-align:top\">156002206</td><td style=\"vertical-align:top\">1436526</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">839</td></tr><tr><td style=\"vertical-align:top\">o0Dvesp0lQU</td><td style=\"vertical-align:top\">2574039</td><td style=\"vertical-align:top\">97428</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">403</td></tr><tr><td style=\"vertical-align:top\">NsMKvVdEPkw</td><td style=\"vertical-align:top\">371948067</td><td style=\"vertical-align:top\">3755234</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13739</td></tr><tr><td style=\"vertical-align:top\">a7K-kWT_C2A</td><td style=\"vertical-align:top\">86752254</td><td style=\"vertical-align:top\">3150171</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">18229</td></tr><tr><td style=\"vertical-align:top\">BOK8T1HK4S8</td><td style=\"vertical-align:top\">555221</td><td style=\"vertical-align:top\">null</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">131</td></tr><tr><td style=\"vertical-align:top\">RFMuw3xpmFE</td><td style=\"vertical-align:top\">2948360</td><td style=\"vertical-align:top\">13561</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">706</td></tr><tr><td style=\"vertical-align:top\">Po098TRdOn4</td><td style=\"vertical-align:top\">57103131</td><td style=\"vertical-align:top\">910323</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3835</td></tr><tr><td style=\"vertical-align:top\">DrpvkCRE2P4</td><td style=\"vertical-align:top\">81447629</td><td style=\"vertical-align:top\">1256778</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">6520</td></tr><tr><td style=\"vertical-align:top\">OQoukB1VB5k</td><td style=\"vertical-align:top\">88424540</td><td style=\"vertical-align:top\">908480</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1895</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281159\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\",\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int?\"}],\"nrow\":232,\"ncol\":5},\"kotlin_dataframe\":[{\"id\":\"y0sF5xhGreA\",\"viewCount\":18909559,\"likeCount\":65910,\"favoriteCount\":0,\"commentCount\":2520},{\"id\":\"tpiyEe_CqB4\",\"viewCount\":15055970,\"likeCount\":105244,\"favoriteCount\":0,\"commentCount\":5750},{\"id\":\"wdjpworLSk8\",\"viewCount\":120508334,\"likeCount\":1907714,\"favoriteCount\":0,\"commentCount\":7049},{\"id\":\"MlDtL2hIj-Q\",\"viewCount\":1371373,\"likeCount\":5922,\"favoriteCount\":0,\"commentCount\":253},{\"id\":\"1UgJI6O8T2U\",\"viewCount\":15684154,\"likeCount\":167360,\"favoriteCount\":0,\"commentCount\":1183},{\"id\":\"cytJLvf-eVs\",\"viewCount\":37184151,\"likeCount\":249829,\"favoriteCount\":0,\"commentCount\":5147},{\"id\":\"ASFCURj-2hQ\",\"viewCount\":104732562,\"likeCount\":null,\"favoriteCount\":0,\"commentCount\":2161},{\"id\":\"8iY66B5NB2w\",\"viewCount\":2534065,\"likeCount\":18949,\"favoriteCount\":0,\"commentCount\":611},{\"id\":\"1TsaNbWEckk\",\"viewCount\":1781,\"likeCount\":21,\"favoriteCount\":0,\"commentCount\":0},{\"id\":\"3URtTIdnXIk\",\"viewCount\":882603,\"likeCount\":4336,\"favoriteCount\":0,\"commentCount\":197},{\"id\":\"afm0c53xO2o\",\"viewCount\":80092074,\"likeCount\":1838343,\"favoriteCount\":0,\"commentCount\":3688},{\"id\":\"2M1AFRWPpy8\",\"viewCount\":156002206,\"likeCount\":1436526,\"favoriteCount\":0,\"commentCount\":839},{\"id\":\"o0Dvesp0lQU\",\"viewCount\":2574039,\"likeCount\":97428,\"favoriteCount\":0,\"commentCount\":403},{\"id\":\"NsMKvVdEPkw\",\"viewCount\":371948067,\"likeCount\":3755234,\"favoriteCount\":0,\"commentCount\":13739},{\"id\":\"a7K-kWT_C2A\",\"viewCount\":86752254,\"likeCount\":3150171,\"favoriteCount\":0,\"commentCount\":18229},{\"id\":\"BOK8T1HK4S8\",\"viewCount\":555221,\"likeCount\":null,\"favoriteCount\":0,\"commentCount\":131},{\"id\":\"RFMuw3xpmFE\",\"viewCount\":2948360,\"likeCount\":13561,\"favoriteCount\":0,\"commentCount\":706},{\"id\":\"Po098TRdOn4\",\"viewCount\":57103131,\"likeCount\":910323,\"favoriteCount\":0,\"commentCount\":3835},{\"id\":\"DrpvkCRE2P4\",\"viewCount\":81447629,\"likeCount\":1256778,\"favoriteCount\":0,\"commentCount\":6520},{\"id\":\"OQoukB1VB5k\",\"viewCount\":88424540,\"likeCount\":908480,\"favoriteCount\":0,\"commentCount\":1895}]}"
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 16
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:11:47.475475Z",
"start_time": "2025-05-28T11:11:47.242097Z"
}
},
"cell_type": "code",
"source": [
"val joined = clean.join(stats)\n",
"\n",
"joined.head().toHtml()"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_20()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_20\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281166&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;table class=&quot;dataframe&quot; id=&quot;static_df_1560281167&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;th style=&quot;text-align:left&quot;&gt;id&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;title&lt;&sol;th&gt;&lt;th class=&quot;rightBorder&quot; style=&quot;text-align:left&quot;&gt;publishedAt&lt;&sol;th&gt;&lt;th class=&quot;leftBorder&quot; style=&quot;text-align:left&quot;&gt;channel&lt;&sol;th&gt;&lt;th class=&quot;rightBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;video&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;viewCount&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;likeCount&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;favoriteCount&lt;&sol;th&gt;&lt;th style=&quot;text-align:left&quot;&gt;commentCount&lt;&sol;th&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder rightBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder leftBorder&quot; style=&quot;text-align:left&quot;&gt;channelId&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder rightBorder&quot; style=&quot;text-align:left&quot;&gt;channelTitle&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;th class=&quot;bottomBorder&quot; style=&quot;text-align:left&quot;&gt;&lt;&sol;th&gt;&lt;&sol;tr&gt;&lt;&sol;thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;y0sF5xhGreA&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-05-28T13:00:44Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCPIvT-zcQl2H0vabdXJGcpg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;The Pet Collective&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;18909559&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;65910&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;0&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;2520&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;tpiyEe_CqB4&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2020-04-10T16:00:28Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCzn2gx8zzhF0A4Utk8TEDNQ&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;Rufus&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;15055970&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;105244&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;0&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;5750&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;wdjpworLSk8&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-09-15T22:02:00Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCQQcnrcfQbWvCl2lBvF5hoQ&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt; Cute Cat&amp;#55357;&amp;#56369;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;120508334&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;1907714&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;0&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;7049&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;MlDtL2hIj-Q&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2023-11-19T19:00:10Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCPIvT-zcQl2H0vabdXJGcpg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;The Pet Collective&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;1371373&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;5922&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;0&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;253&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;tr&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;1UgJI6O8T2U&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;2025-01-14T04:24:22Z&lt;&sol;td&gt;&lt;td class=&quot;leftBorder&quot; style=&quot;vertical-align:top&quot;&gt;UCkgRhUW4sHt6bQ32dNiQVVg&lt;&sol;td&gt;&lt;td class=&quot;rightBorder&quot; style=&quot;vertical-align:top&quot;&gt;Dancing Cat&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;&amp;#60;iframe src=&amp;#34;https:&sol;&sol;www.youtube.com&sol;&lt;span class=&quot;structural&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;15684154&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;167360&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;0&lt;&sol;td&gt;&lt;td style=&quot;vertical-align:top&quot;&gt;1183&lt;&sol;td&gt;&lt;&sol;tr&gt;&lt;&sol;tbody&gt;&lt;&sol;table&gt;\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame [5 x 9]&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;id: String&bsol;&quot;&gt;id&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;y0sF5xhGreA&quot;,&quot;tpiyEe_CqB4&quot;,&quot;wdjpworLSk8&quot;,&quot;MlDtL2hIj-Q&quot;,&quot;1UgJI6O8T2U&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | BEST Compilation&bsol;&quot;&gt;20 Minutes of Adorable Kittens &amp;#55357;&amp;#56845; | B&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute and Funny Cat Videos to Keep You Smiling! &amp;#55357;&amp;#56369;&bsol;&quot;&gt;Cute and Funny Cat Videos to Keep You&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;30 Minutes of the Worlds CUTEST Kittens! &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56469;&bsol;&quot;&gt;30 Minutes of the Worlds CUTEST Kitte&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &amp;#55357;&amp;#56328;&bsol;&quot;&gt;&amp;#55357;&amp;#56369; Funny cat videos | cute cats | Try&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;publishedAt: kotlinx.datetime.Instant&bsol;&quot;&gt;publishedAt&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2023-05-28T13:00:44Z&quot;,&quot;2020-04-10T16:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2023-11-19T19:00:10Z&quot;,&quot;2025-01-14T04:24:22Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCzn2gx8zzhF0A4Utk8TEDNQ&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UCPIvT-zcQl2H0vabdXJGcpg&quot;,&quot;UCkgRhUW4sHt6bQ32dNiQVVg&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;The Pet Collective&quot;,&quot;Rufus&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;The Pet Collective&quot;,&quot;Dancing Cat&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channel: DataRow&lt;*&gt;&bsol;&quot;&gt;channel&lt;&sol;span&gt;&quot;, children: [3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;nchannelTitle: The Pet Collective&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCPIvT-zcQl2H0va&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCzn2gx8zzhF0A4Utk8TEDNQ&bsol;nchannelTitle: Rufus&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCzn2gx8zzhF0A4U&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCQQcnrcfQbWvCl2lBvF5hoQ&bsol;nchannelTitle: Cute Cat&amp;#55357;&amp;#56369;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCQQcnrcfQbWvCl2&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCPIvT-zcQl2H0vabdXJGcpg&bsol;nchannelTitle: The Pet Collective&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCPIvT-zcQl2H0va&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;channelId: UCkgRhUW4sHt6bQ32dNiQVVg&bsol;nchannelTitle: Dancing Cat&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;channelId: &lt;&sol;span&gt;UCkgRhUW4sHt6bQ3&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;c...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;video: dataTypes.IFRAME&bsol;&quot;&gt;video&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;y0sF5xhGreA&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;tpiyEe_CqB4&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;wdjpworLSk8&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;MlDtL2hIj-Q&bsol;&quot; frameborder=0&sol;&gt;&quot;,&quot;&lt;iframe src=&bsol;&quot;https:&sol;&sol;www.youtube.com&sol;embed&sol;1UgJI6O8T2U&bsol;&quot; frameborder=0&sol;&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: Int&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;18909559&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;15055970&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120508334&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1371373&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;15684154&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;likeCount: Int&bsol;&quot;&gt;likeCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;65910&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;105244&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1907714&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;5922&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;167360&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;favoriteCount: Int&bsol;&quot;&gt;favoriteCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;commentCount: Int&bsol;&quot;&gt;commentCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2520&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;5750&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;7049&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;253&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1183&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281166, rootId: 1560281166, totalRows: 5 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281166) });\n",
"\n",
"document.getElementById(&quot;static_df_1560281167&quot;).style.display = &quot;none&quot;;\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_20() {\n",
" let elem = document.getElementById(\"iframe_out_20\");\n",
" resize_iframe_out_20(elem);\n",
" setInterval(resize_iframe_out_20, 5000, elem);\n",
" }\n",
" function resize_iframe_out_20(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script>"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 18
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:12:20.985965Z",
"start_time": "2025-05-28T11:12:20.426530Z"
}
},
"cell_type": "code",
"source": [
"val view by column<Int>()\n",
"\n",
"val channels = joined.groupBy { channel }.sortByCount().aggregate {\n",
" viewCount.sum() into view\n",
"\n",
" val last = maxBy { publishedAt }\n",
" last.title into \"last title\"\n",
" last.publishedAt into \"time\"\n",
" last.viewCount into \"viewCount\"\n",
"}.sortByDesc(view).flatten()\n",
"channels"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_21()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_21\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1560281168&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 165 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 165, columnsCount = 6&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;channelId: String&bsol;&quot;&gt;channelId&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;UCzybj8GhOrPvWv_ZctJAlAw&quot;,&quot;UCkMrzpvOdM2Ndc21jgbj8NA&quot;,&quot;UCDbVjtCeUnZliM4wTkhq2Lg&quot;,&quot;UCuSkK03h80AhO4IkvaSWdow&quot;,&quot;UC0HRkOUeR4l1qwpRf9gLmdA&quot;,&quot;UCJplp5SjeGSdVdwsfb9Q7lQ&quot;,&quot;UCrj6b6NZy_EY_hmIfI9e63Q&quot;,&quot;UCssBz_9Te2OFHBdgfgt89Lw&quot;,&quot;UCWFbgXbNn4stbtjcCwFnYqw&quot;,&quot;UCNtnAu54xWLWGNZmmFy2Apw&quot;,&quot;UCQQcnrcfQbWvCl2lBvF5hoQ&quot;,&quot;UC4-a76b3AGFmdsbIBfMa88A&quot;,&quot;UCntAD-sZOPUXRIcw9syL-MQ&quot;,&quot;UCRSLeYO3BOhRAYz0vLfVSWw&quot;,&quot;UCi_HGn2j_zhU_NXqRbVbhww&quot;,&quot;UCO5aEyYJeUXv8rxQEvbUMeA&quot;,&quot;UCsVD3ZguqePDEKaPHUeaIuQ&quot;,&quot;UCTmml_z2rBmxDUA9Ie4o_uA&quot;,&quot;UCI7EM9d6P4wRWRjbFXcxUlQ&quot;,&quot;UCGVR33D9-jd2iWesZmCGjTg&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;channelTitle: String&bsol;&quot;&gt;channelTitle&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Prince Tom&quot;,&quot;catvid-19&quot;,&quot;Cute Baby Cats 267&quot;,&quot;exlittlebeans&quot;,&quot;Lovie Jennaira&quot;,&quot;Like Nastya&quot;,&quot;Catfuntv&quot;,&quot;Cute cat&amp;#39;s &quot;,&quot;VIKU INFO&quot;,&quot;MIRANO&quot;,&quot; Cute Cat&amp;#55357;&amp;#56369;&quot;,&quot;Pretty Kittens&quot;,&quot;Toon4&quot;,&quot;SugarStar&quot;,&quot;Meow Motion&quot;,&quot;Lovely Kittens&quot;,&quot;ThomasTrucker&quot;,&quot;Little Kitten 21&quot;,&quot;toyfunnycat&quot;,&quot;Remus Bujor&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;view: Int&bsol;&quot;&gt;view&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;465120542&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;406849453&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;371948067&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;335943466&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;293285788&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;285533199&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;248184051&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;200708551&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;151474623&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;136636865&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120508334&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;119668522&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;104732562&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;99885747&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;89961347&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;87162876&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;86752254&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;82520096&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;80092074&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;74875345&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;last title: String&bsol;&quot;&gt;last title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;I lost my kitten on the street&amp;#55357;&amp;#56877; #cat #cats&bsol;&quot;&gt;I lost my kitten on the street&amp;#55357;&amp;#56877; #cat&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&amp;#55357;&amp;#56889;Cats Doing Cat Things&amp;#55357;&amp;#56889; (3)&quot;,&quot;Kitten meowing to attract cats&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Boom,Scared me! #exlittlebeans #funny_cats #cat #funny_videos&bsol;&quot;&gt;Boom,Scared me! #exlittlebeans #funny&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute cats and monkeys take my kinderjoy #catvideos #catslover #cutecats #trendingshorts&bsol;&quot;&gt;Cute cats and monkeys take my kinderj&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Nastya and her stories about cats and kittens&bsol;&quot;&gt;Nastya and her stories about cats and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Revenge of father &amp;#55357;&amp;#56877;&amp;#55357;&amp;#56877; , yellow cat &amp;#55356;&amp;#56730; white cat , #cat #kitten #cute #catlover #cutecat #shorts 8&bsol;&quot;&gt;Revenge of father &amp;#55357;&amp;#56877;&amp;#55357;&amp;#56877; , yellow cat &amp;#55356;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat&bsol;&quot;&gt;#cute #cat #cats #cats101 #shorts #sh&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cat video ! cat voice ! cat sound ! cat meowing #shorts #short #youtubeshorts #tranding #cat #cats&bsol;&quot;&gt;cat video ! cat voice ! cat sound ! c&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;funny and cute cats #shortvideo #shorts&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520 #cat #kittens #pets&bsol;&quot;&gt;Cute kittens&amp;#10084;&amp;#65039;&amp;#12304;30&amp;#12305;#shorts #cutecat520&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Funny moments of cute puppy &amp;#38;amp; cat &amp;#55357;&amp;#56328;&amp;#55357;&amp;#56341; #viralshorts&bsol;&quot;&gt;Funny moments of cute puppy &amp;#38;amp; cat&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts&bsol;&quot;&gt;Cat &amp;#55357;&amp;#56328; &amp;#38;amp; cute baby &amp;#55357;&amp;#56357; laughing vi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;My Kitten&amp;#38;#39;s Name Reveal! #cat #cute #shorts&bsol;&quot;&gt;My Kitten&amp;#38;#39;s Name Reveal! #cat #cu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty&bsol;&quot;&gt;What u do if phone drops in toilet?#c&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;Cute baby kitten sound &amp;#10084;&amp;#65039; #shorts&quot;,&quot;Funny Cute Cats &amp;#55357;&amp;#56890;&quot;,&quot;Cat videos cute cats kittens &amp;#55357;&amp;#56891;&amp;#55357;&amp;#56382;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou&bsol;&quot;&gt;Kitten Arrival! #CatLovers #CuteCats &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Is my cat too aggressive? #cat #pet #comedy #cute #love #shorts #petsofyoutube&bsol;&quot;&gt;Is my cat too aggressive? #cat #pet #&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;time: kotlinx.datetime.Instant&bsol;&quot;&gt;time&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2024-07-17T02:00:12Z&quot;,&quot;2023-07-26T13:33:50Z&quot;,&quot;2023-05-06T14:18:05Z&quot;,&quot;2023-08-12T14:26:13Z&quot;,&quot;2025-04-18T12:25:39Z&quot;,&quot;2020-05-05T06:00:12Z&quot;,&quot;2024-03-29T11:00:29Z&quot;,&quot;2025-01-19T02:00:47Z&quot;,&quot;2023-01-22T04:17:38Z&quot;,&quot;2023-07-02T10:00:28Z&quot;,&quot;2023-09-15T22:02:00Z&quot;,&quot;2024-09-24T13:15:00Z&quot;,&quot;2024-09-26T03:51:17Z&quot;,&quot;2023-12-25T07:55:44Z&quot;,&quot;2024-03-21T07:47:53Z&quot;,&quot;2023-05-25T10:30:02Z&quot;,&quot;2023-07-22T05:27:58Z&quot;,&quot;2025-01-18T10:31:31Z&quot;,&quot;2024-06-26T17:41:01Z&quot;,&quot;2020-12-01T20:28:46Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;viewCount: Int&bsol;&quot;&gt;viewCount&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;465120542&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;406849453&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;371948067&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;279456916&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;9233910&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;285533199&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;125515836&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;102066245&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;151474623&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;136636865&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;120508334&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;10540522&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;104732562&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;99885747&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;89961347&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;81447629&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;86752254&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;534821&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;80092074&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;74875345&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1560281168, rootId: 1560281168, totalRows: 165 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1560281168) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_21() {\n",
" let elem = document.getElementById(\"iframe_out_21\");\n",
" resize_iframe_out_21(elem);\n",
" setInterval(resize_iframe_out_21, 5000, elem);\n",
" }\n",
" function resize_iframe_out_21(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1560281169\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">channelId</th><th class=\"bottomBorder\" style=\"text-align:left\">channelTitle</th><th class=\"bottomBorder\" style=\"text-align:left\">view</th><th class=\"bottomBorder\" style=\"text-align:left\">last title</th><th class=\"bottomBorder\" style=\"text-align:left\">time</th><th class=\"bottomBorder\" style=\"text-align:left\">viewCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">UCzybj8GhOrPvWv_ZctJAlAw</td><td style=\"vertical-align:top\">Prince Tom</td><td style=\"vertical-align:top\">465120542</td><td style=\"vertical-align:top\">I lost my kitten on the street&#55357;&#56877; #cat<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-07-17T02:00:12Z</td><td style=\"vertical-align:top\">465120542</td></tr><tr><td style=\"vertical-align:top\">UCkMrzpvOdM2Ndc21jgbj8NA</td><td style=\"vertical-align:top\">catvid-19</td><td style=\"vertical-align:top\">406849453</td><td style=\"vertical-align:top\">&#55357;&#56889;Cats Doing Cat Things&#55357;&#56889; (3)</td><td style=\"vertical-align:top\">2023-07-26T13:33:50Z</td><td style=\"vertical-align:top\">406849453</td></tr><tr><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">371948067</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">371948067</td></tr><tr><td style=\"vertical-align:top\">UCuSkK03h80AhO4IkvaSWdow</td><td style=\"vertical-align:top\">exlittlebeans</td><td style=\"vertical-align:top\">335943466</td><td style=\"vertical-align:top\">Boom,Scared me! #exlittlebeans #funny<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-08-12T14:26:13Z</td><td style=\"vertical-align:top\">279456916</td></tr><tr><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">293285788</td><td style=\"vertical-align:top\">Cute cats and monkeys take my kinderj<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2025-04-18T12:25:39Z</td><td style=\"vertical-align:top\">9233910</td></tr><tr><td style=\"vertical-align:top\">UCJplp5SjeGSdVdwsfb9Q7lQ</td><td style=\"vertical-align:top\">Like Nastya</td><td style=\"vertical-align:top\">285533199</td><td style=\"vertical-align:top\">Nastya and her stories about cats and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2020-05-05T06:00:12Z</td><td style=\"vertical-align:top\">285533199</td></tr><tr><td style=\"vertical-align:top\">UCrj6b6NZy_EY_hmIfI9e63Q</td><td style=\"vertical-align:top\">Catfuntv</td><td style=\"vertical-align:top\">248184051</td><td style=\"vertical-align:top\">Revenge of father &#55357;&#56877;&#55357;&#56877; , yellow cat &#55356;<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-03-29T11:00:29Z</td><td style=\"vertical-align:top\">125515836</td></tr><tr><td style=\"vertical-align:top\">UCssBz_9Te2OFHBdgfgt89Lw</td><td style=\"vertical-align:top\">Cute cat&#39;s </td><td style=\"vertical-align:top\">200708551</td><td style=\"vertical-align:top\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2025-01-19T02:00:47Z</td><td style=\"vertical-align:top\">102066245</td></tr><tr><td style=\"vertical-align:top\">UCWFbgXbNn4stbtjcCwFnYqw</td><td style=\"vertical-align:top\">VIKU INFO</td><td style=\"vertical-align:top\">151474623</td><td style=\"vertical-align:top\">cat video ! cat voice ! cat sound ! c<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-01-22T04:17:38Z</td><td style=\"vertical-align:top\">151474623</td></tr><tr><td style=\"vertical-align:top\">UCNtnAu54xWLWGNZmmFy2Apw</td><td style=\"vertical-align:top\">MIRANO</td><td style=\"vertical-align:top\">136636865</td><td style=\"vertical-align:top\">funny and cute cats #shortvideo #shorts</td><td style=\"vertical-align:top\">2023-07-02T10:00:28Z</td><td style=\"vertical-align:top\">136636865</td></tr><tr><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\"> Cute Cat&#55357;&#56369;</td><td style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">120508334</td></tr><tr><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">119668522</td><td style=\"vertical-align:top\">Funny moments of cute puppy &#38;amp; cat<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-09-24T13:15:00Z</td><td style=\"vertical-align:top\">10540522</td></tr><tr><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">104732562</td><td style=\"vertical-align:top\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">104732562</td></tr><tr><td style=\"vertical-align:top\">UCRSLeYO3BOhRAYz0vLfVSWw</td><td style=\"vertical-align:top\">SugarStar</td><td style=\"vertical-align:top\">99885747</td><td style=\"vertical-align:top\">My Kitten&#38;#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-12-25T07:55:44Z</td><td style=\"vertical-align:top\">99885747</td></tr><tr><td style=\"vertical-align:top\">UCi_HGn2j_zhU_NXqRbVbhww</td><td style=\"vertical-align:top\">Meow Motion</td><td style=\"vertical-align:top\">89961347</td><td style=\"vertical-align:top\">What u do if phone drops in toilet?#c<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-03-21T07:47:53Z</td><td style=\"vertical-align:top\">89961347</td></tr><tr><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">87162876</td><td style=\"vertical-align:top\">Cute baby kitten sound &#10084;&#65039; #shorts</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">81447629</td></tr><tr><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">86752254</td><td style=\"vertical-align:top\">Funny Cute Cats &#55357;&#56890;</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">86752254</td></tr><tr><td style=\"vertical-align:top\">UCTmml_z2rBmxDUA9Ie4o_uA</td><td style=\"vertical-align:top\">Little Kitten 21</td><td style=\"vertical-align:top\">82520096</td><td style=\"vertical-align:top\">Cat videos cute cats kittens &#55357;&#56891;&#55357;&#56382;</td><td style=\"vertical-align:top\">2025-01-18T10:31:31Z</td><td style=\"vertical-align:top\">534821</td></tr><tr><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">80092074</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">80092074</td></tr><tr><td style=\"vertical-align:top\">UCGVR33D9-jd2iWesZmCGjTg</td><td style=\"vertical-align:top\">Remus Bujor</td><td style=\"vertical-align:top\">74875345</td><td style=\"vertical-align:top\">Is my cat too aggressive? #cat #pet #<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2020-12-01T20:28:46Z</td><td style=\"vertical-align:top\">74875345</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1560281169\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"channelId\",\"channelTitle\",\"view\",\"last title\",\"time\",\"viewCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.Instant\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}],\"nrow\":165,\"ncol\":6},\"kotlin_dataframe\":[{\"channelId\":\"UCzybj8GhOrPvWv_ZctJAlAw\",\"channelTitle\":\"Prince Tom\",\"view\":465120542,\"last title\":\"I lost my kitten on the street😭 #cat #cats\",\"time\":\"2024-07-17T02:00:12Z\",\"viewCount\":465120542},{\"channelId\":\"UCkMrzpvOdM2Ndc21jgbj8NA\",\"channelTitle\":\"catvid-19\",\"view\":406849453,\"last title\":\"😹Cats Doing Cat Things😹 (3)\",\"time\":\"2023-07-26T13:33:50Z\",\"viewCount\":406849453},{\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"channelTitle\":\"Cute Baby Cats 267\",\"view\":371948067,\"last title\":\"Kitten meowing to attract cats\",\"time\":\"2023-05-06T14:18:05Z\",\"viewCount\":371948067},{\"channelId\":\"UCuSkK03h80AhO4IkvaSWdow\",\"channelTitle\":\"exlittlebeans\",\"view\":335943466,\"last title\":\"Boom,Scared me! #exlittlebeans #funny_cats #cat #funny_videos\",\"time\":\"2023-08-12T14:26:13Z\",\"viewCount\":279456916},{\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"channelTitle\":\"Lovie Jennaira\",\"view\":293285788,\"last title\":\"Cute cats and monkeys take my kinderjoy #catvideos #catslover #cutecats #trendingshorts\",\"time\":\"2025-04-18T12:25:39Z\",\"viewCount\":9233910},{\"channelId\":\"UCJplp5SjeGSdVdwsfb9Q7lQ\",\"channelTitle\":\"Like Nastya\",\"view\":285533199,\"last title\":\"Nastya and her stories about cats and kittens\",\"time\":\"2020-05-05T06:00:12Z\",\"viewCount\":285533199},{\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"channelTitle\":\"Catfuntv\",\"view\":248184051,\"last title\":\"Revenge of father 😭😭 , yellow cat 🆚 white cat , #cat #kitten #cute #catlover #cutecat #shorts 8\",\"time\":\"2024-03-29T11:00:29Z\",\"viewCount\":125515836},{\"channelId\":\"UCssBz_9Te2OFHBdgfgt89Lw\",\"channelTitle\":\"Cute cat's \",\"view\":200708551,\"last title\":\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\",\"time\":\"2025-01-19T02:00:47Z\",\"viewCount\":102066245},{\"channelId\":\"UCWFbgXbNn4stbtjcCwFnYqw\",\"channelTitle\":\"VIKU INFO\",\"view\":151474623,\"last title\":\"cat video ! cat voice ! cat sound ! cat meowing #shorts #short #youtubeshorts #tranding #cat #cats\",\"time\":\"2023-01-22T04:17:38Z\",\"viewCount\":151474623},{\"channelId\":\"UCNtnAu54xWLWGNZmmFy2Apw\",\"channelTitle\":\"MIRANO\",\"view\":136636865,\"last title\":\"funny and cute cats #shortvideo #shorts\",\"time\":\"2023-07-02T10:00:28Z\",\"viewCount\":136636865},{\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"channelTitle\":\" Cute Cat🐱\",\"view\":120508334,\"last title\":\"Cute kittens❤【30】#shorts #cutecat520 #cat #kittens #pets\",\"time\":\"2023-09-15T22:02:00Z\",\"viewCount\":120508334},{\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"channelTitle\":\"Pretty Kittens\",\"view\":119668522,\"last title\":\"Funny moments of cute puppy &amp; cat 🐈🐕 #viralshorts\",\"time\":\"2024-09-24T13:15:00Z\",\"viewCount\":10540522},{\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"channelTitle\":\"Toon4\",\"view\":104732562,\"last title\":\"Cat 🐈 &amp; cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"time\":\"2024-09-26T03:51:17Z\",\"viewCount\":104732562},{\"channelId\":\"UCRSLeYO3BOhRAYz0vLfVSWw\",\"channelTitle\":\"SugarStar\",\"view\":99885747,\"last title\":\"My Kitten&#39;s Name Reveal! #cat #cute #shorts\",\"time\":\"2023-12-25T07:55:44Z\",\"viewCount\":99885747},{\"channelId\":\"UCi_HGn2j_zhU_NXqRbVbhww\",\"channelTitle\":\"Meow Motion\",\"view\":89961347,\"last title\":\"What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty\",\"time\":\"2024-03-21T07:47:53Z\",\"viewCount\":89961347},{\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"channelTitle\":\"Lovely Kittens\",\"view\":87162876,\"last title\":\"Cute baby kitten sound ❤️ #shorts\",\"time\":\"2023-05-25T10:30:02Z\",\"viewCount\":81447629},{\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"channelTitle\":\"ThomasTrucker\",\"view\":86752254,\"last title\":\"Funny Cute Cats 😺\",\"time\":\"2023-07-22T05:27:58Z\",\"viewCount\":86752254},{\"channelId\":\"UCTmml_z2rBmxDUA9Ie4o_uA\",\"channelTitle\":\"Little Kitten 21\",\"view\":82520096,\"last title\":\"Cat videos cute cats kittens 😻🐾\",\"time\":\"2025-01-18T10:31:31Z\",\"viewCount\":534821},{\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"channelTitle\":\"toyfunnycat\",\"view\":80092074,\"last title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"time\":\"2024-06-26T17:41:01Z\",\"viewCount\":80092074},{\"channelId\":\"UCGVR33D9-jd2iWesZmCGjTg\",\"channelTitle\":\"Remus Bujor\",\"view\":74875345,\"last title\":\"Is my cat too aggressive? #cat #pet #comedy #cute #love #shorts #petsofyoutube\",\"time\":\"2020-12-01T20:28:46Z\",\"viewCount\":74875345}]}"
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 19
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:12:39.107910Z",
"start_time": "2025-05-28T11:12:36.190503Z"
}
},
"cell_type": "code",
"source": "%use kandy",
"outputs": [],
"execution_count": 20
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:12:48.155119Z",
"start_time": "2025-05-28T11:12:47.138831Z"
}
},
"cell_type": "code",
"source": [
"channels.sortBy { viewCount.desc() }.plot {\n",
" bars {\n",
" x(channelTitle.map { it.take(10) })\n",
" y(viewCount)\n",
" }\n",
"}"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe src='about:blank' style='border:none !important;' width='600' height='400' srcdoc=\"&lt;html lang=&quot;en&quot;>\n",
" &lt;head>\n",
" &lt;meta charset=&quot;UTF-8&quot;>\n",
" &lt;style> html, body { margin: 0; overflow: hidden; } &lt;/style>\n",
" &lt;script type=&quot;text/javascript&quot; data-lets-plot-script=&quot;library&quot; src=&quot;https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js&quot;>&lt;/script>\n",
" &lt;/head>\n",
" &lt;body>\n",
" &lt;div id=&quot;lsRHld&quot;>&lt;/div>\n",
" &lt;script type=&quot;text/javascript&quot; data-lets-plot-script=&quot;plot&quot;>\n",
" \n",
" (function() {\n",
" // ----------\n",
" \n",
" var plotSpec={\n",
"&quot;mapping&quot;:{\n",
"},\n",
"&quot;data&quot;:{\n",
"&quot;viewCount&quot;:[4.65120542E8,4.06849453E8,3.71948067E8,2.85533199E8,2.79456916E8,2.23004529E8,1.51474623E8,1.36636865E8,1.25515836E8,1.20508334E8,1.04732562E8,1.02066245E8,9.9885747E7,8.9961347E7,8.6752254E7,8.1447629E7,8.0092074E7,7.4875345E7,7.3992108E7,7.3128385E7,6.8717443E7,6.5888727E7,6.5238668E7,6.5221849E7,5.7421135E7,5.7103131E7,5.6130595E7,5.4540834E7,4.8005555E7,4.5930617E7,4.2812176E7,4.2352995E7,4.187422E7,4.1688566E7,4.1260262E7,4.0030645E7,3.8497909E7,3.7184151E7,3.56184E7,3.1923429E7,2.9974611E7,2.9225223E7,2.8908776E7,2.8356357E7,2.7347215E7,2.7147742E7,2.5959634E7,2.5240468E7,2.4216354E7,2.4119132E7,2.2085396E7,2.1967309E7,2.1361871E7,2.0973961E7,2.0745861E7,1.9736473E7,1.9527316E7,1.9261276E7,1.8932255E7,1.8316343E7,1.6858532E7,1.6822697E7,1.6557316E7,1.5684154E7,1.5484651E7,1.5388238E7,1.5308169E7,1.505597E7,1.4719375E7,1.4585648E7,1.3270919E7,1.3202136E7,1.2359416E7,1.1799136E7,1.1543804E7,1.0735648E7,1.0540522E7,9802247.0,9233910.0,9228240.0,9142522.0,9021911.0,8945365.0,8876898.0,8693474.0,8631576.0,8260945.0,8107926.0,7796697.0,6916206.0,6915591.0,6751261.0,6305951.0,6231819.0,6071764.0,5838098.0,5446622.0,5251862.0,4661538.0,4604465.0,4600995.0,4565509.0,4324654.0,3986768.0,3356600.0,3289204.0,3235202.0,3234636.0,3063433.0,2802480.0,2534065.0,2482309.0,2360178.0,2321983.0,2079967.0,1755952.0,1730633.0,1645219.0,1395050.0,1366083.0,1269342.0,1193048.0,1149928.0,1010213.0,977144.0,965420.0,882603.0,796043.0,734874.0,702630.0,682845.0,665884.0,633793.0,542624.0,534821.0,511175.0,399787.0,391351.0,362063.0,296742.0,65866.0,65674.0,43228.0,37642.0,35667.0,32152.0,31934.0,30738.0,30456.0,28954.0,23204.0,22211.0,17510.0,16117.0,14153.0,10593.0,10372.0,9708.0,6782.0,6302.0,4548.0,3782.0,3240.0,1781.0,1039.0],\n",
"&quot;channelTitle&quot;:[&quot;Prince Tom&quot;,&quot;catvid-19&quot;,&quot;Cute Baby &quot;,&quot;Like Nasty&quot;,&quot;exlittlebe&quot;,&quot;Sonyakisa8&quot;,&quot;VIKU INFO&quot;,&quot;MIRANO&quot;,&quot;Catfuntv&quot;,&quot; Cute Cat?&quot;,&quot;Toon4&quot;,&quot;Cute cat's&quot;,&quot;SugarStar&quot;,&quot;Meow Motio&quot;,&quot;ThomasTruc&quot;,&quot;Lovely Kit&quot;,&quot;toyfunnyca&quot;,&quot;Remus Bujo&quot;,&quot;Ana.simon_&quot;,&quot;Chpetoo_05&quot;,&quot;Sirf Shrey&quot;,&quot;Cat Cute J&quot;,&quot;Cat and Ha&quot;,&quot;MY CAT NEW&quot;,&quot;COOL PEACH&quot;,&quot;SRH Funny &quot;,&quot;Kiran's An&quot;,&quot;Stocat&quot;,&quot;Teddy Kitt&quot;,&quot;dragon hub&quot;,&quot;Lucky cat&quot;,&quot;Princess c&quot;,&quot;Lovento Fi&quot;,&quot;Story Arc &quot;,&quot;Funny-anim&quot;,&quot;Half-Aslee&quot;,&quot;Prank&quot;,&quot;Aww Animal&quot;,&quot;FunnyCatTv&quot;,&quot;The BN Fam&quot;,&quot;Maiw Milky&quot;,&quot;Adventures&quot;,&quot;Oscar's Fu&quot;,&quot;Impossible&quot;,&quot;DIARY DIMU&quot;,&quot;Meow WORLD&quot;,&quot;PurrfectPa&quot;,&quot;FunnyPaws&quot;,&quot;Baby Pop&quot;,&quot;Jeff Canal&quot;,&quot;Mantio&quot;,&quot;SydVids&quot;,&quot;Ai Game &quot;,&quot;Shefali Ra&quot;,&quot;TheCatRank&quot;,&quot;Cat 😍 sho&quot;,&quot;FurryFritz&quot;,&quot;Lulu the C&quot;,&quot;COSEFNASTY&quot;,&quot;Meow Magic&quot;,&quot;Furry Corn&quot;,&quot;Pets Unive&quot;,&quot;Stew-Art&quot;,&quot;Dancing Ca&quot;,&quot;wk.loverba&quot;,&quot;Beco's Sto&quot;,&quot;Animal Wor&quot;,&quot;Rufus&quot;,&quot;CatAniki&quot;,&quot;Jusbrend M&quot;,&quot;Brennan Ro&quot;,&quot;LilyJoy&quot;,&quot;土豆の日記Cat's&quot;,&quot;A Satisfyi&quot;,&quot;Kak Nurul&quot;,&quot;Wholesome &quot;,&quot;Pretty Kit&quot;,&quot;Cute Anima&quot;,&quot;Lovie Jenn&quot;,&quot;Every Minu&quot;,&quot;Cat dance &quot;,&quot;Organic Na&quot;,&quot;Cute Cat o&quot;,&quot;The Pet Zo&quot;,&quot;Cute.video&quot;,&quot;WhiteCat&quot;,&quot;LOADING FU&quot;,&quot;Meowtvee&quot;,&quot;Cat Ai Net&quot;,&quot;CUTE CAT&quot;,&quot;NewFunStor&quot;,&quot;CatClips&quot;,&quot;Peshtook&quot;,&quot;DailyDoseO&quot;,&quot;OhCrayZ&quot;,&quot;Meow Kingd&quot;,&quot;The Meow S&quot;,&quot;Takasi ani&quot;,&quot;Kitty Show&quot;,&quot;𝐭𝐡𝐞-𝐏?&quot;,&quot;Meow Memor&quot;,&quot;Tasty Paws&quot;,&quot;Pets Funny&quot;,&quot;CAT KITTY &quot;,&quot;Funny Sofi&quot;,&quot;Koray Zeyn&quot;,&quot;PET NATION&quot;,&quot;Jaw-Droppi&quot;,&quot;Meow Meow &quot;,&quot;CUTE ANIMA&quot;,&quot;CaD Animal&quot;,&quot;All About &quot;,&quot;Top 10 Ser&quot;,&quot;Pawfectly &quot;,&quot;imili , Fu&quot;,&quot;Republic O&quot;,&quot;Ai pet cre&quot;,&quot;BearyDeliv&quot;,&quot;Cat 888&quot;,&quot;Humpty Hob&quot;,&quot;Grinly&quot;,&quot;Monster Bi&quot;,&quot;Evolving F&quot;,&quot;Acorn Stud&quot;,&quot;Incredible&quot;,&quot;CATZ&quot;,&quot;The Pet Co&quot;,&quot;CoCpet&quot;,&quot;ColdNPC&quot;,&quot;matta&quot;,&quot;Funny And &quot;,&quot;Salim Ubey&quot;,&quot;Daisy Vide&quot;,&quot;Little Lov&quot;,&quot;Little Kit&quot;,&quot;Cat Fun 0&quot;,&quot;Happy Tail&quot;,&quot;Kitten Won&quot;,&quot;cats101&quot;,&quot;REST EASY &quot;,&quot;Kit Cat Ja&quot;,&quot;CuteAnimal&quot;,&quot;Meowtoon S&quot;,&quot;Cat story &quot;,&quot;Cute Momen&quot;,&quot;Cheetosimb&quot;,&quot;Kittycute&quot;,&quot;Funny vide&quot;,&quot;Sunghoonve&quot;,&quot;Paws &amp; Cla&quot;,&quot;pets&quot;,&quot;Love For A&quot;,&quot;apt cat cu&quot;,&quot;CUTE CAT🥰&quot;,&quot;Cute Cat D&quot;,&quot;The Black &quot;,&quot;Miau Miau&quot;,&quot;MUNDO PET&quot;,&quot;Sweet anim&quot;,&quot;sleep_cats&quot;,&quot;Testameow&quot;,&quot;Ansari Wri&quot;,&quot;About Robl&quot;,&quot;ODINKK 06&quot;,&quot;Kids' Bedt&quot;]\n",
"},\n",
"&quot;kind&quot;:&quot;plot&quot;,\n",
"&quot;scales&quot;:[{\n",
"&quot;aesthetic&quot;:&quot;x&quot;,\n",
"&quot;discrete&quot;:true\n",
"},{\n",
"&quot;aesthetic&quot;:&quot;y&quot;,\n",
"&quot;limits&quot;:[null,null]\n",
"}],\n",
"&quot;layers&quot;:[{\n",
"&quot;mapping&quot;:{\n",
"&quot;x&quot;:&quot;channelTitle&quot;,\n",
"&quot;y&quot;:&quot;viewCount&quot;\n",
"},\n",
"&quot;stat&quot;:&quot;identity&quot;,\n",
"&quot;sampling&quot;:&quot;none&quot;,\n",
"&quot;inherit_aes&quot;:false,\n",
"&quot;position&quot;:&quot;dodge&quot;,\n",
"&quot;geom&quot;:&quot;bar&quot;,\n",
"&quot;data&quot;:{\n",
"}\n",
"}],\n",
"&quot;data_meta&quot;:{\n",
"&quot;series_annotations&quot;:[{\n",
"&quot;type&quot;:&quot;str&quot;,\n",
"&quot;column&quot;:&quot;channelTitle&quot;\n",
"},{\n",
"&quot;type&quot;:&quot;int&quot;,\n",
"&quot;column&quot;:&quot;viewCount&quot;\n",
"}]\n",
"},\n",
"&quot;spec_id&quot;:&quot;2&quot;\n",
"};\n",
" var containerDiv = document.getElementById(&quot;lsRHld&quot;);\n",
" \n",
" var toolbar = null;\n",
" var plotContainer = containerDiv; \n",
" \n",
" var options = {\n",
" sizing: {\n",
" width_mode: &quot;fixed&quot;,\n",
" height_mode: &quot;fixed&quot;,\n",
" width: 600.0,\n",
" height: 400.0\n",
" }\n",
" };\n",
" var fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer, options);\n",
" if (toolbar) {\n",
" toolbar.bind(fig);\n",
" }\n",
" \n",
" // ----------\n",
" })();\n",
" \n",
" &lt;/script>\n",
" &lt;/body>\n",
"&lt;/html>\"></iframe> <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=5b91a5ee-58f0-4727-94e1-d9bdf0d82091 width=\"100%\" height=\"100%\" style=\"max-width: 600.0px; max-height: 400.0px;\" viewBox=\"0 0 600.0 400.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
" <style type=\"text/css\">\n",
" .plt-container {\n",
" font-family: Lucida Grande, sans-serif;\n",
" user-select: none;\n",
" -webkit-user-select: none;\n",
" -moz-user-select: none;\n",
" -ms-user-select: none;\n",
"}\n",
"text {\n",
" text-rendering: optimizeLegibility;\n",
"}\n",
"#p9sOWCf .plot-title {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 16.0px;\n",
"\n",
"}\n",
"#p9sOWCf .plot-subtitle {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#p9sOWCf .plot-caption {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#p9sOWCf .hyperlink-element {\n",
"fill: #118ed8;\n",
"font-weight: normal;\n",
" font-style: normal;\n",
"}\n",
"#p9sOWCf .legend-title {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#p9sOWCf .legend-item {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#p9sOWCf .axis-title-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#p9sOWCf .axis-text-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#dT4o8EV .axis-tooltip-text-x {\n",
"fill: #ffffff;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#p9sOWCf .axis-title-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#p9sOWCf .axis-text-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#dT4o8EV .axis-tooltip-text-y {\n",
"fill: #ffffff;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#p9sOWCf .facet-strip-text-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#p9sOWCf .facet-strip-text-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#dT4o8EV .tooltip-text {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#dT4o8EV .tooltip-title {\n",
"fill: #474747;\n",
"font-weight: bold;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#dT4o8EV .tooltip-label {\n",
"fill: #474747;\n",
"font-weight: bold;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"\n",
" </style>\n",
" <g id=\"p9sOWCf\">\n",
" <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\">\n",
" </path>\n",
" <g transform=\"translate(29.5 6.5 ) \">\n",
" <g>\n",
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
" <g>\n",
" <line x1=\"2.0553554609899076\" y1=\"0.0\" x2=\"2.0553554609899076\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"17.865782083989195\" y1=\"0.0\" x2=\"17.865782083989195\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"33.67620870698848\" y1=\"0.0\" x2=\"33.67620870698848\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"49.48663532998777\" y1=\"0.0\" x2=\"49.48663532998777\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"65.29706195298705\" y1=\"0.0\" x2=\"65.29706195298705\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"81.10748857598634\" y1=\"0.0\" x2=\"81.10748857598634\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"96.91791519898563\" y1=\"0.0\" x2=\"96.91791519898563\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"112.72834182198491\" y1=\"0.0\" x2=\"112.72834182198491\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"128.5387684449842\" y1=\"0.0\" x2=\"128.5387684449842\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"144.3491950679835\" y1=\"0.0\" x2=\"144.3491950679835\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"160.1596216909828\" y1=\"0.0\" x2=\"160.1596216909828\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"175.9700483139821\" y1=\"0.0\" x2=\"175.9700483139821\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"191.78047493698136\" y1=\"0.0\" x2=\"191.78047493698136\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"207.59090155998064\" y1=\"0.0\" x2=\"207.59090155998064\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"223.40132818297994\" y1=\"0.0\" x2=\"223.40132818297994\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"239.21175480597924\" y1=\"0.0\" x2=\"239.21175480597924\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"255.0221814289785\" y1=\"0.0\" x2=\"255.0221814289785\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"270.8326080519778\" y1=\"0.0\" x2=\"270.8326080519778\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"286.64303467497706\" y1=\"0.0\" x2=\"286.64303467497706\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"302.4534612979764\" y1=\"0.0\" x2=\"302.4534612979764\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"318.26388792097566\" y1=\"0.0\" x2=\"318.26388792097566\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"334.07431454397494\" y1=\"0.0\" x2=\"334.07431454397494\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"349.88474116697427\" y1=\"0.0\" x2=\"349.88474116697427\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"365.69516778997354\" y1=\"0.0\" x2=\"365.69516778997354\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"381.5055944129728\" y1=\"0.0\" x2=\"381.5055944129728\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"397.3160210359721\" y1=\"0.0\" x2=\"397.3160210359721\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"413.12644765897136\" y1=\"0.0\" x2=\"413.12644765897136\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"428.9368742819707\" y1=\"0.0\" x2=\"428.9368742819707\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"444.74730090496996\" y1=\"0.0\" x2=\"444.74730090496996\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"460.55772752796923\" y1=\"0.0\" x2=\"460.55772752796923\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"476.36815415096856\" y1=\"0.0\" x2=\"476.36815415096856\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"492.17858077396784\" y1=\"0.0\" x2=\"492.17858077396784\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"507.9890073969671\" y1=\"0.0\" x2=\"507.9890073969671\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
" <g>\n",
" <line x1=\"0.0\" y1=\"255.84024275155826\" x2=\"522.6927041563564\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"203.45438746308056\" x2=\"522.6927041563564\" y2=\"203.45438746308056\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"151.06853217460286\" x2=\"522.6927041563564\" y2=\"151.06853217460286\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"98.6826768861252\" x2=\"522.6927041563564\" y2=\"98.6826768861252\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"46.296821597647494\" x2=\"522.6927041563564\" y2=\"46.296821597647494\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g clip-path=\"url(#chzcaOf)\" clip-bounds-jfx=\"[rect (41.307295843643615, 0.0), (522.6927041563564, 255.84024275155826)]\">\n",
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
" <g>\n",
" <g>\n",
" <rect x=\"519.2144102992966\" y=\"255.83969846252182\" height=\"5.442890364406594E-4\" width=\"2.8458767921399613\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"516.0523249746967\" y=\"255.83930975947558\" height=\"9.329920826814941E-4\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"512.8902396500969\" y=\"255.83854544984692\" height=\"0.0016973017113457445\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"509.7281543254971\" y=\"255.83826151851125\" height=\"0.0019812330470188044\" width=\"2.8458767921397907\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"506.5660690008972\" y=\"255.83786024285973\" height=\"0.0023825086985311827\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"503.40398367629734\" y=\"255.836941394958\" height=\"0.003301356600275085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"500.2418983516975\" y=\"255.8366899428526\" height=\"0.003552808705677535\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"497.07981302709766\" y=\"255.83515713272686\" height=\"0.005085618831401462\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"493.91772770249776\" y=\"255.83480929064774\" height=\"0.005433460910523991\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"490.7556423778979\" y=\"255.83469351790757\" height=\"0.005549233650697261\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"487.59355705329807\" y=\"255.8328285814593\" height=\"0.007414170098968498\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"484.4314717286982\" y=\"255.8317997232614\" height=\"0.008443028296852617\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"481.2693864040983\" y=\"255.83106998829726\" height=\"0.009172763261005912\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"478.1073010794985\" y=\"255.82860732924013\" height=\"0.01163542231813608\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"474.94521575489864\" y=\"255.82808713769714\" height=\"0.012155613861125403\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"471.7831304302988\" y=\"255.82507495101805\" height=\"0.015167800540211829\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"468.6210451056989\" y=\"255.8242881154716\" height=\"0.015954636086661367\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"465.45895978109905\" y=\"255.8241403873597\" height=\"0.01610236419855937\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"462.2968744564992\" y=\"255.82351385253045\" height=\"0.01672889902781094\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"459.13478913189937\" y=\"255.82339965136592\" height=\"0.016843100192346583\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"455.97270380729947\" y=\"255.82155828855252\" height=\"0.01868446300574078\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"452.8106184826996\" y=\"255.82052366791058\" height=\"0.019719083647686375\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"449.6485331580998\" y=\"255.81759739403415\" height=\"0.02264535752411234\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"446.48644783349994\" y=\"255.80583886495612\" height=\"0.034403886602149214\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"443.32436250890004\" y=\"255.80573828411394\" height=\"0.03450446744432156\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"440.1622771843002\" y=\"255.68479191685813\" height=\"0.1554508347001331\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"437.00019185970035\" y=\"255.65057295232515\" height=\"0.18966979923311555\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"433.8381065351005\" y=\"255.63523018302826\" height=\"0.20501256853000882\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"430.6760212105006\" y=\"255.63081091227613\" height=\"0.20943183928213216\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"427.51393588590076\" y=\"255.5724593557874\" height=\"0.26778339577086285\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"424.3518505613009\" y=\"255.56007219644587\" height=\"0.28017055511239164\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"421.1897652367011\" y=\"255.55598452815772\" height=\"0.28425822340054197\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"418.0276799121012\" y=\"255.50822486774976\" height=\"0.33201788380850417\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"414.86559458750133\" y=\"255.49141372292914\" height=\"0.348829028629126\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"411.7035092629015\" y=\"255.48252855801366\" height=\"0.3577141935446093\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"408.54142393830165\" y=\"255.47216401654484\" height=\"0.3680787350134267\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"405.37933861370175\" y=\"255.45527272136562\" height=\"0.3849700301926475\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"402.21725328910185\" y=\"255.4232288175442\" height=\"0.41701393401405085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"399.055167964502\" y=\"255.3778836212065\" height=\"0.46235913035175713\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"395.89308263990216\" y=\"255.33449922743225\" height=\"0.505743524126018\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"392.7309973153023\" y=\"255.32835750975823\" height=\"0.5118852418000301\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"389.5689119907024\" y=\"255.31103403127287\" height=\"0.5292087202853963\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"386.4068266661026\" y=\"255.23784313355657\" height=\"0.602399618001698\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"383.24474134150273\" y=\"255.21525435275618\" height=\"0.6249883988020883\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"380.0826560169029\" y=\"255.1752870883224\" height=\"0.6649556632358724\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"376.920570692303\" y=\"255.12460848805776\" height=\"0.7156342635005046\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"373.75848536770314\" y=\"255.10943387735637\" height=\"0.7308088742018981\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"370.5964000431033\" y=\"254.97838070703972\" height=\"0.8618620445185456\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"367.43431471850346\" y=\"254.93363585260363\" height=\"0.9066068989546352\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"364.27222939390356\" y=\"254.92037227790314\" height=\"0.9198704736551235\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"361.1101440693037\" y=\"254.75063424889018\" height=\"1.089608502668085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"357.94805874470387\" y=\"254.6238520973552\" height=\"1.2163906542030531\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"354.785973420104\" y=\"254.6038433199278\" height=\"1.236399431630474\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"351.6238880955041\" y=\"254.5398639510054\" height=\"1.3003788005528634\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"348.4618027709043\" y=\"254.5127511277423\" height=\"1.3274916238159733\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"345.29971744630444\" y=\"254.37213963426973\" height=\"1.4681031172885355\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"342.1376321217046\" y=\"254.2354371733188\" height=\"1.6048055782394783\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"338.9755467971047\" y=\"254.14575101748926\" height=\"1.694491734069004\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"335.81346147250486\" y=\"254.14545451354832\" height=\"1.6947882380099486\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"332.651376147905\" y=\"254.11716510397545\" height=\"1.7230776475828122\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"329.48929082330517\" y=\"254.08185913294523\" height=\"1.7583836186130384\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"326.32720549870527\" y=\"253.75174023639093\" height=\"2.0885025151673346\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"323.1651201741054\" y=\"253.5747357653909\" height=\"2.2655069861673667\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"320.0030348495056\" y=\"253.44856181363585\" height=\"2.391680937922416\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"316.84094952490574\" y=\"253.42997216902816\" height=\"2.410270582530103\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"313.67886420030584\" y=\"253.42815437984967\" height=\"2.4120883717085917\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"310.516778875706\" y=\"253.39825620066085\" height=\"2.4419865508974112\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"307.35469355110615\" y=\"253.08900992428772\" height=\"2.7512328272705417\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"304.1926082265063\" y=\"252.98698323252788\" height=\"2.853259519030388\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"301.0305229019064\" y=\"252.78190518167875\" height=\"3.0583375698795123\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"297.86843757730657\" y=\"252.6594972490604\" height=\"3.180745502497871\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"294.7063522527067\" y=\"252.57565106837842\" height=\"3.2645916831798445\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"291.5442669281069\" y=\"252.53681638613594\" height=\"3.3034263654223253\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"288.382181603507\" y=\"252.30353693395082\" height=\"3.536705817607441\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"285.22009627890714\" y=\"252.21745125795528\" height=\"3.622791493602989\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"282.0580109543073\" y=\"252.21712908494524\" height=\"3.6231136666130226\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"278.89592562970745\" y=\"251.75587634385718\" height=\"4.084366407701083\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"275.73384030510755\" y=\"251.5928363703014\" height=\"4.247406381256866\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"272.5717549805077\" y=\"251.51267605839752\" height=\"4.3275666931607475\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"269.40966965590786\" y=\"251.31851783908328\" height=\"4.52172491247498\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"266.247584331308\" y=\"251.28609204237682\" height=\"4.554150709181442\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"263.0854990067081\" y=\"251.1900038111725\" height=\"4.650238940385776\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"259.9234136821083\" y=\"251.15413678763213\" height=\"4.686105963926138\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"256.76132835750843\" y=\"251.11403751084302\" height=\"4.726205240715245\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"253.59924303290856\" y=\"251.05085440692102\" height=\"4.789388344637246\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"250.43715770830872\" y=\"251.00595029948485\" height=\"4.834292452073413\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"247.27507238370885\" y=\"251.00298002149\" height=\"4.837262730068261\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"244.112987059109\" y=\"250.7052518231191\" height=\"5.1349909284391515\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"240.95090173450913\" y=\"250.3185001499881\" height=\"5.521742601570168\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"237.7888164099093\" y=\"250.2162817259979\" height=\"5.623961025560362\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"234.62673108530942\" y=\"249.79292229333277\" height=\"6.047320458225499\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"231.46464576070957\" y=\"249.65916444130758\" height=\"6.181078310250683\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"228.3025604361097\" y=\"249.3656569712973\" height=\"6.474585780260952\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"225.14047511150986\" y=\"248.92419089161024\" height=\"6.916051859948027\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"221.97838978691\" y=\"248.88815832876716\" height=\"6.952084422791103\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"218.81630446231014\" y=\"248.1994262973915\" height=\"7.640816454166753\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"215.65421913771027\" y=\"248.1293722646899\" height=\"7.710870486868373\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"212.49213381311043\" y=\"247.95304409508165\" height=\"7.887198656476613\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"209.33004848851056\" y=\"247.82092749190267\" height=\"8.019315259655599\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"206.1679631639107\" y=\"247.77898266143174\" height=\"8.061260090126524\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"203.00587783931084\" y=\"247.72847588677246\" height=\"8.111766864785807\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"199.843792514711\" y=\"247.62396453389627\" height=\"8.216278217661994\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"196.68170719011113\" y=\"247.1665511521423\" height=\"8.673691599415974\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"193.51962186551128\" y=\"247.02752904551917\" height=\"8.81271370603909\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"190.3575365409114\" y=\"247.00875657427656\" height=\"8.831486177281704\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"187.19545121631157\" y=\"246.24506981343706\" height=\"9.595172938121209\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"184.0333658917117\" y=\"245.9224190444127\" height=\"9.917823707145573\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"180.87128056711185\" y=\"245.75005857948398\" height=\"10.090184172074288\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"177.70919524251198\" y=\"245.61069125007452\" height=\"10.22955150148374\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"174.54710991791214\" y=\"245.50112256672878\" height=\"10.339120184829483\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"171.38502459331227\" y=\"244.97234602974953\" height=\"10.867896721808734\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"168.22293926871242\" y=\"244.8528538938365\" height=\"10.987388857721754\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"165.06085394411255\" y=\"244.649643922587\" height=\"11.190598828971275\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"161.8987686195127\" y=\"244.33248004804554\" height=\"11.507762703512725\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"158.73668329491284\" y=\"244.27061916311104\" height=\"11.569623588447229\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"155.574597970313\" y=\"243.20522916520136\" height=\"12.635013586356905\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"152.41251264571312\" y=\"243.15429858897278\" height=\"12.685944162585486\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"149.25042732111328\" y=\"242.61780771094374\" height=\"13.222435040614528\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"146.0883419965134\" y=\"242.2410664508998\" height=\"13.599176300658456\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"142.92625667191356\" y=\"241.618665913349\" height=\"14.221576838209273\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"139.7641713473137\" y=\"241.5141702762294\" height=\"14.326072475328857\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"136.60208602271385\" y=\"240.98552260845415\" height=\"14.854720143104117\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"133.44000069811398\" y=\"240.6961331905281\" height=\"15.144109561030177\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"130.27791537351413\" y=\"240.53035972304338\" height=\"15.30988302851489\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"127.11583004891426\" y=\"240.13778640981414\" height=\"15.702456341744124\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"123.9537447243144\" y=\"239.11688143249833\" height=\"16.723361319059933\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"120.79165939971455\" y=\"237.18123927148713\" height=\"18.659003480071135\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"117.62957407511469\" y=\"236.36100721844923\" height=\"19.479235533109033\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"114.46748875051483\" y=\"235.67278385372845\" height=\"20.167458897829817\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"111.30540342591497\" y=\"234.86984699081404\" height=\"20.970395760744225\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"108.14331810131512\" y=\"234.22570160859152\" height=\"21.614541142966743\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"104.98123277671526\" y=\"234.00133089495677\" height=\"21.8389118566015\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"101.8191474521154\" y=\"233.90407445917947\" height=\"21.936168292378795\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"98.65706212751554\" y=\"233.65326408052206\" height=\"22.1869786710362\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"95.49497680291569\" y=\"233.41271818634988\" height=\"22.427524565208387\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"92.33289147831583\" y=\"231.77909619683334\" height=\"24.061146554724928\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"89.17080615371597\" y=\"230.6921221788277\" height=\"25.148120572730562\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"86.00872082911611\" y=\"227.2685603791894\" height=\"28.571682372368855\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"82.84663550451626\" y=\"226.43575048229678\" height=\"29.404492269261482\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"79.6845501799164\" y=\"225.92627918070843\" height=\"29.91396357084983\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"76.52246485531654\" y=\"225.75969006545685\" height=\"30.080552686101413\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"73.36037953071668\" y=\"221.67321931794882\" height=\"34.167023433609444\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"70.19829420611683\" y=\"221.66440854094787\" height=\"34.17583421061039\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"67.03620888151697\" y=\"221.32386957391813\" height=\"34.51637317764013\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"63.87412355691713\" y=\"219.84202250363612\" height=\"35.99822024792215\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"60.71203823231727\" y=\"217.53131281065743\" height=\"38.30892994090084\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"57.54995290771741\" y=\"217.07884412978413\" height=\"38.761398621774134\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"54.387867583117554\" y=\"216.61615287310985\" height=\"39.22408987844841\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"51.2257822585177\" y=\"213.8833247683778\" height=\"41.95691798318046\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"48.06369693391784\" y=\"213.1732056877221\" height=\"42.667037063836176\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"44.90161160931798\" y=\"210.39433251162566\" height=\"45.4459102399326\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"41.739526284718124\" y=\"208.713221696573\" height=\"47.12702105498528\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"38.57744096011827\" y=\"203.51423987432332\" height=\"52.32600287723494\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"35.41535563551841\" y=\"202.37196734747516\" height=\"53.4682754040831\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"32.253270310918545\" y=\"200.97519438232308\" height=\"54.86504836923518\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"29.09118498631869\" y=\"192.7109212917629\" height=\"63.129321459795364\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"25.92909966171883\" y=\"190.0876985404753\" height=\"65.75254421108298\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"22.767014337118972\" y=\"184.26185238194563\" height=\"71.57839036961263\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"19.604929012519115\" y=\"176.48896594801113\" height=\"79.35127680354714\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"16.442843687919257\" y=\"139.017412902867\" height=\"116.82282984869127\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"13.280758363319402\" y=\"109.4443471421556\" height=\"146.39589560940266\" width=\"2.8458767921398707\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"10.118673038719544\" y=\"106.26123432285723\" height=\"149.57900842870103\" width=\"2.8458767921398707\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"6.956587714119687\" y=\"60.9920666246482\" height=\"194.84817612691006\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"3.7945023895198293\" y=\"42.70867706101521\" height=\"213.13156569054306\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" <rect x=\"0.6324170649199716\" y=\"12.182868702455153\" height=\"243.6573740491031\" width=\"2.8458767921398715\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
" </rect>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"chzcaOf\">\n",
" <rect x=\"41.307295843643615\" y=\"0.0\" width=\"522.6927041563564\" height=\"255.84024275155826\">\n",
" </rect>\n",
" </clipPath>\n",
" </defs>\n",
" </g>\n",
" <g>\n",
" <g transform=\"translate(41.307295843643615 255.84024275155826 ) \">\n",
" <g transform=\"translate(2.0553554609899076 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Prince Tom</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(17.865782083989195 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Sonyakisa8</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(33.67620870698848 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Toon4</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(49.48663532998777 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Lovely Kit</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(65.29706195298705 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Sirf Shrey</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(81.10748857598634 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>SRH Funny </tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(96.91791519898563 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Lucky cat</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(112.72834182198491 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Half-Aslee</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(128.5387684449842 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Maiw Milky</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(144.3491950679835 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Meow WORLD</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(160.1596216909828 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Mantio</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(175.9700483139821 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Cat 😍 sho</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(191.78047493698136 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Furry Corn</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(207.59090155998064 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Beco&#39;s Sto</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(223.40132818297994 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Brennan Ro</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(239.21175480597924 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Wholesome </tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(255.0221814289785 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Cat dance </tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(270.8326080519778 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>WhiteCat</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(286.64303467497706 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>NewFunStor</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(302.4534612979764 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Meow Kingd</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(318.26388792097566 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Meow Memor</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(334.07431454397494 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Koray Zeyn</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(349.88474116697427 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>CaD Animal</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(365.69516778997354 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Republic O</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(381.5055944129728 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Grinly</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(397.3160210359721 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>CATZ</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(413.12644765897136 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Funny And </tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(428.9368742819707 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Cat Fun 0</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(444.74730090496996 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Kit Cat Ja</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(460.55772752796923 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Cheetosimb</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(476.36815415096856 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>pets</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(492.17858077396784 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>The Black </tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(507.9890073969671 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
" <tspan>Testameow</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <line x1=\"0.0\" y1=\"0.0\" x2=\"522.6927041563564\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
" </line>\n",
" </g>\n",
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
" <g transform=\"translate(0.0 255.84024275155826 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>0</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 203.45438746308056 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>100M</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 151.06853217460286 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>200M</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 98.6826768861252 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>300M</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 46.296821597647494 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>400M</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(16.0 134.42012137577913 ) rotate(-90.0 ) \">\n",
" <text class=\"axis-title-y\" y=\"0.0\" text-anchor=\"middle\">\n",
" <tspan>viewCount</tspan>\n",
" </text>\n",
" </g>\n",
" <g transform=\"translate(332.1536479218218 393.0 ) \">\n",
" <text class=\"axis-title-x\" y=\"0.0\" text-anchor=\"middle\">\n",
" <tspan>channelTitle</tspan>\n",
" </text>\n",
" </g>\n",
" <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\" pointer-events=\"none\">\n",
" </path>\n",
" </g>\n",
" <g id=\"dT4o8EV\">\n",
" </g>\n",
"</svg>\n",
" <script>document.getElementById(\"5b91a5ee-58f0-4727-94e1-d9bdf0d82091\").style.display = \"none\";</script>"
],
"application/plot+json": {
"output_type": "lets_plot_spec",
"output": {
"mapping": {},
"data": {
"viewCount": [
4.65120542E8,
4.06849453E8,
3.71948067E8,
2.85533199E8,
2.79456916E8,
2.23004529E8,
1.51474623E8,
1.36636865E8,
1.25515836E8,
1.20508334E8,
1.04732562E8,
1.02066245E8,
9.9885747E7,
8.9961347E7,
8.6752254E7,
8.1447629E7,
8.0092074E7,
7.4875345E7,
7.3992108E7,
7.3128385E7,
6.8717443E7,
6.5888727E7,
6.5238668E7,
6.5221849E7,
5.7421135E7,
5.7103131E7,
5.6130595E7,
5.4540834E7,
4.8005555E7,
4.5930617E7,
4.2812176E7,
4.2352995E7,
4.187422E7,
4.1688566E7,
4.1260262E7,
4.0030645E7,
3.8497909E7,
3.7184151E7,
3.56184E7,
3.1923429E7,
2.9974611E7,
2.9225223E7,
2.8908776E7,
2.8356357E7,
2.7347215E7,
2.7147742E7,
2.5959634E7,
2.5240468E7,
2.4216354E7,
2.4119132E7,
2.2085396E7,
2.1967309E7,
2.1361871E7,
2.0973961E7,
2.0745861E7,
1.9736473E7,
1.9527316E7,
1.9261276E7,
1.8932255E7,
1.8316343E7,
1.6858532E7,
1.6822697E7,
1.6557316E7,
1.5684154E7,
1.5484651E7,
1.5388238E7,
1.5308169E7,
1.505597E7,
1.4719375E7,
1.4585648E7,
1.3270919E7,
1.3202136E7,
1.2359416E7,
1.1799136E7,
1.1543804E7,
1.0735648E7,
1.0540522E7,
9802247.0,
9233910.0,
9228240.0,
9142522.0,
9021911.0,
8945365.0,
8876898.0,
8693474.0,
8631576.0,
8260945.0,
8107926.0,
7796697.0,
6916206.0,
6915591.0,
6751261.0,
6305951.0,
6231819.0,
6071764.0,
5838098.0,
5446622.0,
5251862.0,
4661538.0,
4604465.0,
4600995.0,
4565509.0,
4324654.0,
3986768.0,
3356600.0,
3289204.0,
3235202.0,
3234636.0,
3063433.0,
2802480.0,
2534065.0,
2482309.0,
2360178.0,
2321983.0,
2079967.0,
1755952.0,
1730633.0,
1645219.0,
1395050.0,
1366083.0,
1269342.0,
1193048.0,
1149928.0,
1010213.0,
977144.0,
965420.0,
882603.0,
796043.0,
734874.0,
702630.0,
682845.0,
665884.0,
633793.0,
542624.0,
534821.0,
511175.0,
399787.0,
391351.0,
362063.0,
296742.0,
65866.0,
65674.0,
43228.0,
37642.0,
35667.0,
32152.0,
31934.0,
30738.0,
30456.0,
28954.0,
23204.0,
22211.0,
17510.0,
16117.0,
14153.0,
10593.0,
10372.0,
9708.0,
6782.0,
6302.0,
4548.0,
3782.0,
3240.0,
1781.0,
1039.0
],
"channelTitle": [
"Prince Tom",
"catvid-19",
"Cute Baby ",
"Like Nasty",
"exlittlebe",
"Sonyakisa8",
"VIKU INFO",
"MIRANO",
"Catfuntv",
" Cute Cat?",
"Toon4",
"Cute cat's",
"SugarStar",
"Meow Motio",
"ThomasTruc",
"Lovely Kit",
"toyfunnyca",
"Remus Bujo",
"Ana.simon_",
"Chpetoo_05",
"Sirf Shrey",
"Cat Cute J",
"Cat and Ha",
"MY CAT NEW",
"COOL PEACH",
"SRH Funny ",
"Kiran's An",
"Stocat",
"Teddy Kitt",
"dragon hub",
"Lucky cat",
"Princess c",
"Lovento Fi",
"Story Arc ",
"Funny-anim",
"Half-Aslee",
"Prank",
"Aww Animal",
"FunnyCatTv",
"The BN Fam",
"Maiw Milky",
"Adventures",
"Oscar's Fu",
"Impossible",
"DIARY DIMU",
"Meow WORLD",
"PurrfectPa",
"FunnyPaws",
"Baby Pop",
"Jeff Canal",
"Mantio",
"SydVids",
"Ai Game ",
"Shefali Ra",
"TheCatRank",
"Cat 😍 sho",
"FurryFritz",
"Lulu the C",
"COSEFNASTY",
"Meow Magic",
"Furry Corn",
"Pets Unive",
"Stew-Art",
"Dancing Ca",
"wk.loverba",
"Beco's Sto",
"Animal Wor",
"Rufus",
"CatAniki",
"Jusbrend M",
"Brennan Ro",
"LilyJoy",
"土豆の日記Cat's",
"A Satisfyi",
"Kak Nurul",
"Wholesome ",
"Pretty Kit",
"Cute Anima",
"Lovie Jenn",
"Every Minu",
"Cat dance ",
"Organic Na",
"Cute Cat o",
"The Pet Zo",
"Cute.video",
"WhiteCat",
"LOADING FU",
"Meowtvee",
"Cat Ai Net",
"CUTE CAT",
"NewFunStor",
"CatClips",
"Peshtook",
"DailyDoseO",
"OhCrayZ",
"Meow Kingd",
"The Meow S",
"Takasi ani",
"Kitty Show",
"𝐭𝐡𝐞-𝐏?",
"Meow Memor",
"Tasty Paws",
"Pets Funny",
"CAT KITTY ",
"Funny Sofi",
"Koray Zeyn",
"PET NATION",
"Jaw-Droppi",
"Meow Meow ",
"CUTE ANIMA",
"CaD Animal",
"All About ",
"Top 10 Ser",
"Pawfectly ",
"imili , Fu",
"Republic O",
"Ai pet cre",
"BearyDeliv",
"Cat 888",
"Humpty Hob",
"Grinly",
"Monster Bi",
"Evolving F",
"Acorn Stud",
"Incredible",
"CATZ",
"The Pet Co",
"CoCpet",
"ColdNPC",
"matta",
"Funny And ",
"Salim Ubey",
"Daisy Vide",
"Little Lov",
"Little Kit",
"Cat Fun 0",
"Happy Tail",
"Kitten Won",
"cats101",
"REST EASY ",
"Kit Cat Ja",
"CuteAnimal",
"Meowtoon S",
"Cat story ",
"Cute Momen",
"Cheetosimb",
"Kittycute",
"Funny vide",
"Sunghoonve",
"Paws & Cla",
"pets",
"Love For A",
"apt cat cu",
"CUTE CAT🥰",
"Cute Cat D",
"The Black ",
"Miau Miau",
"MUNDO PET",
"Sweet anim",
"sleep_cats",
"Testameow",
"Ansari Wri",
"About Robl",
"ODINKK 06",
"Kids' Bedt"
]
},
"kind": "plot",
"scales": [
{
"aesthetic": "x",
"discrete": true
},
{
"aesthetic": "y",
"limits": [
null,
null
]
}
],
"layers": [
{
"mapping": {
"x": "channelTitle",
"y": "viewCount"
},
"stat": "identity",
"sampling": "none",
"inherit_aes": false,
"position": "dodge",
"geom": "bar"
}
],
"data_meta": {
"series_annotations": [
{
"type": "str",
"column": "channelTitle"
},
{
"type": "int",
"column": "viewCount"
}
]
}
},
"apply_color_scheme": true,
"swing_enabled": true
}
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 21
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:12:50.186274Z",
"start_time": "2025-05-28T11:12:49.743773Z"
}
},
"cell_type": "code",
"source": [
"val growth = joined\n",
" .select { publishedAt and viewCount }\n",
" .sortBy { publishedAt }\n",
" .convert { all() }.toLong()\n",
" .cumSum { viewCount }"
],
"outputs": [],
"execution_count": 22
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-28T11:12:54.745863Z",
"start_time": "2025-05-28T11:12:54.569514Z"
}
},
"cell_type": "code",
"source": [
"growth.plot {\n",
" area {\n",
" x(publishedAt)\n",
" y(viewCount)\n",
" }\n",
"}"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe src='about:blank' style='border:none !important;' width='600' height='400' srcdoc=\"&lt;html lang=&quot;en&quot;>\n",
" &lt;head>\n",
" &lt;meta charset=&quot;UTF-8&quot;>\n",
" &lt;style> html, body { margin: 0; overflow: hidden; } &lt;/style>\n",
" &lt;script type=&quot;text/javascript&quot; data-lets-plot-script=&quot;library&quot; src=&quot;https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js&quot;>&lt;/script>\n",
" &lt;/head>\n",
" &lt;body>\n",
" &lt;div id=&quot;YOE1vL&quot;>&lt;/div>\n",
" &lt;script type=&quot;text/javascript&quot; data-lets-plot-script=&quot;plot&quot;>\n",
" \n",
" (function() {\n",
" // ----------\n",
" \n",
" var plotSpec={\n",
"&quot;mapping&quot;:{\n",
"},\n",
"&quot;data&quot;:{\n",
"&quot;publishedAt&quot;:[1.577569041E12,1.580917785E12,1.586534428E12,1.588658412E12,1.606854526E12,1.62193824E12,1.624121248E12,1.628847525E12,1.630931238E12,1.643915461E12,1.644768012E12,1.660788019E12,1.66385613E12,1.664582409E12,1.666046538E12,1.672652771E12,1.673068557E12,1.674361058E12,1.677005928E12,1.679653492E12,1.680254122E12,1.680358674E12,1.680448798E12,1.682702817E12,1.682941601E12,1.68301981E12,1.683382685E12,1.68364645E12,1.684461611E12,1.684632901E12,1.685010602E12,1.685278844E12,1.685795773E12,1.686917165E12,1.687430453E12,1.688292028E12,1.688909778E12,1.690003678E12,1.69037843E12,1.691850373E12,1.692276804E12,1.693785617E12,1.69481532E12,1.695038217E12,1.69641004E12,1.696770029E12,1.697722573E12,1.70042041E12,1.702088091E12,1.703490944E12,1.704719601E12,1.708473604E12,1.710758999E12,1.710767884E12,1.710970137E12,1.711007273E12,1.711622705E12,1.711710029E12,1.712294024E12,1.7123256E12,1.71450696E12,1.716518623E12,1.717148789E12,1.718794319E12,1.718867992E12,1.7188905E12,1.71896499E12,1.719423661E12,1.719491004E12,1.719670726E12,1.720520215E12,1.720748375E12,1.720958071E12,1.721179802E12,1.721181612E12,1.72155768E12,1.721581025E12,1.721650763E12,1.721750104E12,1.7219085E12,1.722434406E12,1.722603661E12,1.722733213E12,1.723221904E12,1.723362484E12,1.723538203E12,1.723726852E12,1.72372879E12,1.723740856E12,1.723814102E12,1.724553019E12,1.72546536E12,1.7255433E12,1.725614511E12,1.725620416E12,1.726107304E12,1.726590582E12,1.726617618E12,1.726717616E12,1.72688222E12,1.727103079E12,1.7271837E12,1.727322677E12,1.727326817E12,1.727348053E12,1.727362825E12,1.727430478E12,1.72791217E12,1.728484104E12,1.728901827E12,1.729060203E12,1.729083628E12,1.72921518E12,1.729256979E12,1.729869012E12,1.729980039E12,1.73004093E12,1.730097008E12,1.730509204E12,1.730654248E12,1.730683829E12,1.730876206E12,1.73131832E12,1.732152857E12,1.732336507E12,1.732668879E12,1.732817473E12,1.733825741E12,1.733842592E12,1.733918603E12,1.733925619E12,1.734566425E12,1.734739205E12,1.735023563E12,1.735051582E12,1.735236523E12,1.735381818E12,1.735390333E12,1.735567575E12,1.736261194E12,1.736274846E12,1.736566217E12,1.736828497E12,1.736828662E12,1.737007044E12,1.737049131E12,1.737077628E12,1.737196291E12,1.737252047E12,1.737300905E12,1.73769485E12,1.73775942E12,1.737986459E12,1.738223746E12,1.738241817E12,1.738328416E12,1.73833542E12,1.738417927E12,1.738418186E12,1.738504846E12,1.738858513E12,1.739961024E12,1.739971105E12,1.7402075E12,1.740275336E12,1.740278829E12,1.740720607E12,1.741098409E12,1.741191058E12,1.741250545E12,1.741434597E12,1.74174324E12,1.741783978E12,1.741794614E12,1.741939267E12,1.742180948E12,1.742223453E12,1.742301998E12,1.742344355E12,1.742391903E12,1.742562902E12,1.743074336E12,1.743087086E12,1.743750016E12,1.743774001E12,1.743840037E12,1.744358607E12,1.744549211E12,1.74465214E12,1.744774027E12,1.744886001E12,1.744979139E12,1.745018956E12,1.745712045E12,1.746232252E12,1.746395036E12,1.74649112E12,1.746544596E12,1.746574424E12,1.746806635E12,1.747029797E12,1.747101636E12,1.747254488E12,1.74731221E12,1.747323287E12,1.747478101E12,1.747652405E12,1.747712065E12,1.747821616E12,1.747911633E12,1.747962041E12,1.748168812E12,1.748203233E12,1.748253132E12,1.748266283E12,1.748271084E12,1.748282461E12,1.748285761E12,1.7482893E12,1.748289626E12,1.748318271E12,1.748327403E12,1.748336892E12,1.748338558E12,1.748340036E12,1.748344224E12,1.748347245E12,1.74835089E12,1.7483529E12,1.74835817E12,1.748371501E12,1.748401467E12],\n",
"&quot;viewCount&quot;:[6436450.0,4.3620601E7,5.8676571E7,3.4420977E8,4.19085115E8,4.27962013E8,4.30764493E8,4.88185628E8,5.10271024E8,5.58276579E8,5.98307224E8,5.99673307E8,5.99970049E8,6.04062509E8,6.13290749E8,6.7039388E8,6.7178893E8,8.23263553E8,8.46390698E8,8.50995163E8,8.92255425E8,8.96242193E8,9.52728743E8,1.025857128E9,1.470506776E9,1.476222023E9,1.84817009E9,1.851405292E9,1.893758287E9,1.949888882E9,2.031336511E9,2.05024607E9,2.407649122E9,2.786927129E9,2.860919237E9,2.997556102E9,3.457090309E9,3.543842563E9,3.950692016E9,4.230148932E9,4.363878693E9,4.364384902E9,4.484893236E9,4.720347013E9,4.739608289E9,4.742556649E9,4.813087711E9,4.814459084E9,4.8268185E9,4.926704247E9,4.997999845E9,5.011270764E9,5.069022792E9,5.100056791E9,5.1220241E9,5.211985447E9,5.276901634E9,5.40241747E9,5.456958304E9,5.47648562E9,5.493042936E9,5.538973553E9,5.547507307E9,5.587706135E9,5.607442608E9,5.639366037E9,5.639765824E9,5.719857898E9,5.875860104E9,5.881931868E9,5.896539785E9,5.920254663E9,5.945495131E9,5.970190258E9,6.4353108E9,6.448512936E9,6.450243569E9,6.458367303E9,6.681371832E9,6.692061509E9,6.69261673E9,6.698848549E9,6.70227349E9,6.711218855E9,6.723017991E9,6.727679529E9,6.756588305E9,6.822477032E9,6.82483721E9,6.84554067E9,6.859742161E9,6.864655889E9,6.953080429E9,6.980427644E9,6.98853557E9,6.994990122E9,7.003251067E9,7.033225678E9,7.047725727E9,7.064584259E9,7.081406956E9,7.091947478E9,7.19668004E9,7.211988209E9,7.22747286E9,7.246405115E9,7.267766986E9,7.271001622E9,7.27215155E9,7.27550815E9,7.303864507E9,7.304547352E9,7.338276963E9,7.342601617E9,7.348439715E9,7.359175363E9,7.385134997E9,7.404155232E9,7.425129193E9,7.432045399E9,7.441847646E9,7.483721866E9,7.490292675E9,7.528790584E9,7.531854017E9,7.534428056E9,7.53516293E9,7.559282062E9,7.560317799E9,7.563607003E9,7.568861871E9,7.571223368E9,7.576070037E9,7.585212559E9,7.58882366E9,7.597845571E9,7.603408614E9,7.613104455E9,7.614081599E9,7.619528221E9,7.636482028E9,7.644132506E9,7.658718154E9,7.674402308E9,7.773044614E9,7.787763989E9,7.814911731E9,7.815446552E9,7.917512797E9,7.925309494E9,7.936853298E9,7.972471698E9,7.974116917E9,7.975872869E9,7.977952836E9,7.980486901E9,7.98296921E9,7.989720471E9,7.995679424E9,7.996222048E9,7.996733223E9,7.997124574E9,8.021340928E9,8.023871564E9,8.06556013E9,8.074253604E9,8.080203047E9,8.081182508E9,8.146404357E9,8.189216533E9,8.190226746E9,8.208543089E9,8.209036404E9,8.274275072E9,8.278876067E9,8.30810129E9,8.313336461E9,8.313896656E9,8.320202607E9,8.324768116E9,8.325130179E9,8.355369793E9,8.370758031E9,8.376009893E9,8.444727336E9,8.453415713E9,8.454685055E9,8.455567658E9,8.476313519E9,8.476413113E9,8.485044689E9,8.494278599E9,8.495829951E9,8.496625994E9,8.49676137E9,8.497442882E9,8.497508556E9,8.498142349E9,8.499107769E9,8.499145411E9,8.499181078E9,8.501503061E9,8.502205691E9,8.503398739E9,8.503430673E9,8.503496539E9,8.51041213E9,8.510426283E9,8.510461992E9,8.511127876E9,8.511150087E9,8.511173291E9,8.511593811E9,8.511624267E9,8.511640384E9,8.511672536E9,8.511682908E9,8.511698112E9,8.511727066E9,8.511770294E9,8.511772075E9,8.511802813E9,8.511809115E9,8.511824657E9,8.511842167E9,8.51185276E9,8.511862468E9,8.51186625E9,8.51186949E9,8.511876272E9,8.511877311E9,8.511881859E9]\n",
"},\n",
"&quot;kind&quot;:&quot;plot&quot;,\n",
"&quot;scales&quot;:[{\n",
"&quot;aesthetic&quot;:&quot;x&quot;,\n",
"&quot;limits&quot;:[null,null]\n",
"},{\n",
"&quot;aesthetic&quot;:&quot;y&quot;,\n",
"&quot;limits&quot;:[null,null]\n",
"}],\n",
"&quot;layers&quot;:[{\n",
"&quot;mapping&quot;:{\n",
"&quot;x&quot;:&quot;publishedAt&quot;,\n",
"&quot;y&quot;:&quot;viewCount&quot;\n",
"},\n",
"&quot;stat&quot;:&quot;identity&quot;,\n",
"&quot;sampling&quot;:&quot;none&quot;,\n",
"&quot;inherit_aes&quot;:false,\n",
"&quot;position&quot;:&quot;identity&quot;,\n",
"&quot;geom&quot;:&quot;area&quot;,\n",
"&quot;data&quot;:{\n",
"}\n",
"}],\n",
"&quot;data_meta&quot;:{\n",
"&quot;series_annotations&quot;:[{\n",
"&quot;type&quot;:&quot;int&quot;,\n",
"&quot;column&quot;:&quot;publishedAt&quot;\n",
"},{\n",
"&quot;type&quot;:&quot;int&quot;,\n",
"&quot;column&quot;:&quot;viewCount&quot;\n",
"}]\n",
"},\n",
"&quot;spec_id&quot;:&quot;5&quot;\n",
"};\n",
" var containerDiv = document.getElementById(&quot;YOE1vL&quot;);\n",
" \n",
" var toolbar = null;\n",
" var plotContainer = containerDiv; \n",
" \n",
" var options = {\n",
" sizing: {\n",
" width_mode: &quot;fixed&quot;,\n",
" height_mode: &quot;fixed&quot;,\n",
" width: 600.0,\n",
" height: 400.0\n",
" }\n",
" };\n",
" var fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer, options);\n",
" if (toolbar) {\n",
" toolbar.bind(fig);\n",
" }\n",
" \n",
" // ----------\n",
" })();\n",
" \n",
" &lt;/script>\n",
" &lt;/body>\n",
"&lt;/html>\"></iframe> <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=9b52e313-269a-4d79-a1c7-21714fb34254 width=\"100%\" height=\"100%\" style=\"max-width: 600.0px; max-height: 400.0px;\" viewBox=\"0 0 600.0 400.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
" <style type=\"text/css\">\n",
" .plt-container {\n",
" font-family: Lucida Grande, sans-serif;\n",
" user-select: none;\n",
" -webkit-user-select: none;\n",
" -moz-user-select: none;\n",
" -ms-user-select: none;\n",
"}\n",
"text {\n",
" text-rendering: optimizeLegibility;\n",
"}\n",
"#pw01gDx .plot-title {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 16.0px;\n",
"\n",
"}\n",
"#pw01gDx .plot-subtitle {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#pw01gDx .plot-caption {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#pw01gDx .hyperlink-element {\n",
"fill: #118ed8;\n",
"font-weight: normal;\n",
" font-style: normal;\n",
"}\n",
"#pw01gDx .legend-title {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#pw01gDx .legend-item {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#pw01gDx .axis-title-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#pw01gDx .axis-text-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#d6ndQ2r .axis-tooltip-text-x {\n",
"fill: #ffffff;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#pw01gDx .axis-title-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 15.0px;\n",
"\n",
"}\n",
"#pw01gDx .axis-text-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#d6ndQ2r .axis-tooltip-text-y {\n",
"fill: #ffffff;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#pw01gDx .facet-strip-text-x {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#pw01gDx .facet-strip-text-y {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#d6ndQ2r .tooltip-text {\n",
"fill: #474747;\n",
"font-weight: normal;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#d6ndQ2r .tooltip-title {\n",
"fill: #474747;\n",
"font-weight: bold;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"#d6ndQ2r .tooltip-label {\n",
"fill: #474747;\n",
"font-weight: bold;\n",
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
"font-size: 13.0px;\n",
"\n",
"}\n",
"\n",
" </style>\n",
" <g id=\"pw01gDx\">\n",
" <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\">\n",
" </path>\n",
" <g transform=\"translate(29.5 6.5 ) \">\n",
" <g>\n",
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
" <g>\n",
" <line x1=\"31.452530707092592\" y1=\"0.0\" x2=\"31.452530707092592\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"88.7818549811509\" y1=\"0.0\" x2=\"88.7818549811509\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"146.1111792552092\" y1=\"0.0\" x2=\"146.1111792552092\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"203.44050352926752\" y1=\"0.0\" x2=\"203.44050352926752\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"260.7698278033249\" y1=\"0.0\" x2=\"260.7698278033249\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"318.0991520773832\" y1=\"0.0\" x2=\"318.0991520773832\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"375.42847635144153\" y1=\"0.0\" x2=\"375.42847635144153\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"432.75780062549984\" y1=\"0.0\" x2=\"432.75780062549984\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"490.08712489955815\" y1=\"0.0\" x2=\"490.08712489955815\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
" <g>\n",
" <line x1=\"0.0\" y1=\"341.0\" x2=\"538.6539150672928\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"302.8460511856706\" x2=\"538.6539150672928\" y2=\"302.8460511856706\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"264.69210237134126\" x2=\"538.6539150672928\" y2=\"264.69210237134126\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"226.53815355701187\" x2=\"538.6539150672928\" y2=\"226.53815355701187\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"188.38420474268253\" x2=\"538.6539150672928\" y2=\"188.38420474268253\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"150.23025592835313\" x2=\"538.6539150672928\" y2=\"150.23025592835313\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"112.07630711402376\" x2=\"538.6539150672928\" y2=\"112.07630711402376\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"73.9223582996944\" x2=\"538.6539150672928\" y2=\"73.9223582996944\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" <line x1=\"0.0\" y1=\"35.768409485365055\" x2=\"538.6539150672928\" y2=\"35.768409485365055\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
" </line>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g clip-path=\"url(#cOgZkti)\" clip-bounds-jfx=\"[rect (25.34608493270721, 0.0), (538.6539150672928, 341.0)]\">\n",
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
" <g>\n",
" <g>\n",
" <g>\n",
" <path d=\"M24.484268866695857 340.754424016154 L24.484268866695857 340.754424016154 L34.08333040103571 339.3357018221957 L50.18324779496652 338.76125711346566 L56.27157616941258 327.8670380540279 L108.43012217109936 325.0102479734427 L151.6670787292569 324.67155926152066 L157.9245974054993 324.56463358304745 L171.4723107426007 322.37379053739676 L177.44520365615426 321.53114546886854 L214.66404019683887 319.6995439805951 L217.1078488337971 318.1722168002605 L263.0286576425815 318.1200953394024 L271.8232941639717 318.10877346032333 L273.90514837919363 317.9526299509586 L278.10202469019623 317.60053615435226 L297.0385683845452 315.42182621704035 L298.23040490567564 315.3685995507469 L301.93531535335296 309.58924453813506 L309.51674584799 308.7068526315835 L317.1058986026055 308.53117410965615 L318.8275842045423 306.9569321852423 L319.1272789801169 306.8048212430357 L319.3856163811606 304.6496363056376 L325.84668568970574 301.85949964747306 L326.5311519580782 284.8943597373715 L326.75533541418554 284.6763004958722 L327.79550434148314 270.4850129859655 L328.55157780234094 270.3615772544535 L330.8882092675685 268.7456432510899 L331.37920626531377 266.60403940254207 L332.46187342069607 263.49649073462757 L333.2307800507915 262.77501638844006 L334.71253956417513 249.13867863634695 L337.9269718444921 234.6677249708681 L339.3982945543912 231.84463386957177 L341.86797018246216 226.6313979162113 L343.6387296859766 209.0983533038999 L346.7743570771463 205.78841224525618 L347.8485710236646 190.26549904035627 L352.0678459016608 179.60311417148193 L353.2901959556366 174.50079571533544 L357.6151574429323 174.4814818430601 L360.5667663025806 169.883613035924 L361.2056930222161 160.90012168012547 L365.1379773028966 160.1652279415228 L366.1698736087019 160.05273636499658 L368.9003088017671 157.3616978356283 L376.63356741234475 157.30937454038093 L381.41391865407877 156.83781401494193 L385.43514938137105 153.02677833662287 L388.95705316010026 150.30656973984387 L399.71777592573926 149.80023177559875 L406.2687834782055 147.59676385536304 L406.29425203051414 146.4126942460131 L406.87400342163437 145.57455466283852 L406.9804525109457 142.1421740341324 L408.7445675457775 139.665365158113 L408.9948788414231 134.87644037598122 L410.6688807778946 132.79549218725438 L410.759392315058 132.05044797210914 L417.01218705498104 131.41872098494247 L422.7785510778376 129.6662865749139 L424.58490062586225 129.34069016160382 L429.3017567744964 127.8069461356958 L429.5129379398586 127.05392175507839 L429.5774563613968 125.83591687903453 L429.79097942965564 125.82066342629989 L431.10574435436047 122.76483453447042 L431.2987807885902 116.81273435182393 L431.8139478294488 116.58107257895526 L434.24897934686123 116.02372286145328 L434.90299227818014 115.11890662010322 L435.5040787773287 114.1558830959815 L436.13966319735937 113.21366648446013 L436.1448515012062 95.46748113249902 L437.2228377172605 94.96376751131518 L437.28975537101996 94.8977370284168 L437.489656991831 94.58778449719958 L437.7744146119667 86.07928111236996 L438.2284513943523 85.67142772327023 L439.7359431749355 85.6502438496556 L440.2211069139357 85.41247534650941 L440.59246334485397 85.28180032290334 L441.99327958529466 84.94049932456784 L442.39624740561703 84.4903156935705 L442.89993998222235 84.31245961132248 L443.44069596697136 83.20947565153358 L443.4462511784932 80.69556053413424 L443.480837959828 80.60551042352955 L443.69079514411624 79.81559167041002 L445.80887575934776 79.27374870970885 L448.4240704112235 79.0862705831093 L448.6474827879192 75.71252521001867 L448.8516067134633 74.66912096869424 L448.86853319645525 74.35977157509984 L450.26418119831305 74.11350492847242 L451.6494812571382 73.79831725578447 L451.7269790376922 72.65466748196098 L452.01361992612965 72.10143335460975 L452.48545173077036 71.458213787597 L453.1185365922629 70.81636146734002 L453.3496339648773 70.41419893047572 L453.74800683985904 66.41823812073415 L453.75987400998383 65.83417102426705 L453.82074628649843 65.24337044260528 L453.863089725407 64.52103015439548 L454.0570147641629 63.70599042168317 L455.43776860757407 63.582576285306175 L457.07719809504124 63.538701991254015 L458.2745869612281 63.410634446663835 L458.72856641429007 62.328727453125 L458.79571338534606 62.30267421994688 L459.17280274869063 61.01575636832564 L459.2926181699577 60.850753740969935 L461.046990086129 60.628007248704876 L461.3652452304377 60.21839988442423 L461.5397872246558 59.22793733754952 L461.70053291698787 58.50224026492299 L462.8820788244111 57.70200083049525 L463.29784254991137 57.438120260781886 L463.38263548697887 57.064125830478474 L463.93407765777283 55.46645898395849 L465.20138250137825 55.215756673703766 L467.5935546159626 53.74690942425906 L468.11998113610935 53.630027358380914 L469.07271424449027 53.53181760612887 L469.49865392504944 53.50377926114788 L472.3888200814072 52.58353913337379 L472.43712290357416 52.544021676890736 L472.6550058669436 52.41852555583483 L472.6751169938989 52.218031591136764 L474.5119657424375 52.12793115547356 L475.00723377484064 51.94301159452755 L475.8223363744373 51.59418827810572 L475.90265189127877 51.45641051538831 L476.4327790193074 51.11218898488687 L476.84926222782724 50.89993692701296 L476.8736701876369 50.53000230578709 L477.3817283922863 50.49272040362689 L479.3699638209682 50.28491026662789 L479.4090968177179 49.638055582141874 L480.24430194487104 49.346159636124696 L480.9961187034005 48.78965956890886 L480.99659167032587 48.191247159996806 L481.50791764645874 44.4276536659454 L481.6285586099948 43.86605138561646 L481.7102442976866 42.830257826923855 L482.0503877780038 42.80985229386505 L482.2102104682144 38.91562200646422 L482.35026027448384 38.61814722820537 L483.4794903070406 38.17770552126672 L483.6645780304598 36.81872291081845 L484.3153776531526 36.755951309304066 L484.99555282160327 36.68895480657562 L485.0473527325512 36.60959585212214 L485.29558584019196 36.51291126581998 L485.31566256955284 36.4182013752926 L485.5521660974464 36.16061410866644 L485.55290851219615 35.93325652091744 L485.80131647427515 35.91255327259603 L486.81509098067727 35.893049927810864 L489.97540151241265 35.87811834178842 L490.00429835831346 34.95416881080274 L490.6819166389014 34.85761505439103 L490.8763662409747 33.26703164108426 L490.88637880745864 32.935341279069576 L492.15272051841566 32.70834653537378 L493.23567718688537 32.67097623051416 L493.50125241511887 30.182505142192213 L493.67176989077325 28.549051570458175 L494.199348730338 28.510507955364574 L495.0840634619335 27.811667142076885 L495.20083756254735 27.792845226817576 L495.23132529719624 25.3037324272305 L495.6459682344075 25.128186299505558 L496.33873865540136 24.013128637076193 L496.4605778018149 23.813386190707945 L496.6857243905697 23.7920125393519 L496.80713929998365 23.551415607672197 L496.94343403551284 23.377223410974864 L497.43359689159024 23.36340927780526 L498.8996051731283 22.209648593084182 L498.9361526173534 21.622526548089468 L500.83641906440334 21.422147274161546 L500.9051712565388 18.80030547128797 L501.0944612194271 18.468809579950403 L502.58092460386706 18.420379170254478 L503.12728453006366 18.386704380569142 L503.422327030974 17.595167861865946 L503.77171199836357 17.591367957487705 L504.09268168617655 17.26203924859675 L504.3596586163885 16.909729119100575 L504.47379270161946 16.85053891429959 L506.4605089032084 16.82016673042358 L507.9516646928405 16.8150016014489 L508.41827952897165 16.788999227484567 L508.6937010686497 16.78649350505009 L508.84698821589336 16.76231179936923 L508.93248917011533 16.7254772141049 L509.598114156066 16.724041023163636 L510.237800489248 16.722680186271248 L510.4437245555746 16.63408736574155 L510.8818696492717 16.607279256686127 L511.04732781205894 16.561759764361057 L511.0790796583078 16.56054135615966 L511.52284875871646 16.558028308167025 L512.022485285629 16.29417120313218 L512.193498659939 16.29363121029462 L512.5075229001159 16.292268770936403 L512.7655535892754 16.26686266688415 L512.9100464181756 16.266015229527 L513.502748503649 16.26512990529875 L513.601415137191 16.249085406743347 L513.7444489347881 16.247923390078256 L513.782145831965 16.2473084628852 L513.7959077362566 16.24608173712295 L513.8285195223698 16.245686004365837 L513.8379788608754 16.245105911728047 L513.8481232848053 16.2440012022941 L513.8490577527909 16.242351883394747 L513.9311676774832 16.242283931211887 L513.9573442469464 16.24111115513324 L513.9845441448479 16.240870708947796 L513.9893196775602 16.240277720275344 L513.9935563146246 16.239609644631628 L514.0055610751269 16.23920547985182 L514.0142206695591 16.238835081316722 L514.0246689389078 16.23869078308229 L514.0304305359969 16.238567164288156 L514.0455368129433 16.238308404207316 L514.0837496740387 16.23826876225445 L514.1696462005984 16.23809523809524 L514.1696462005984 341.0 L514.0837496740387 341.0 L514.0455368129433 341.0 L514.0304305359969 341.0 L514.0246689389078 341.0 L514.0142206695591 341.0 L514.0055610751269 341.0 L513.9935563146246 341.0 L513.9893196775602 341.0 L513.9845441448479 341.0 L513.9573442469464 341.0 L513.9311676774832 341.0 L513.8490577527909 341.0 L513.8481232848053 341.0 L513.8379788608754 341.0 L513.8285195223698 341.0 L513.7959077362566 341.0 L513.782145831965 341.0 L513.7444489347881 341.0 L513.601415137191 341.0 L513.502748503649 341.0 L512.9100464181756 341.0 L512.7655535892754 341.0 L512.5075229001159 341.0 L512.193498659939 341.0 L512.022485285629 341.0 L511.52284875871646 341.0 L511.0790796583078 341.0 L511.04732781205894 341.0 L510.8818696492717 341.0 L510.4437245555746 341.0 L510.237800489248 341.0 L509.598114156066 341.0 L508.93248917011533 341.0 L508.84698821589336 341.0 L508.6937010686497 341.0 L508.41827952897165 341.0 L507.9516646928405 341.0 L506.4605089032084 341.0 L504.47379270161946 341.0 L504.3596586163885 341.0 L504.09268168617655 341.0 L503.77171199836357 341.0 L503.422327030974 341.0 L503.12728453006366 341.0 L502.58092460386706 341.0 L501.0944612194271 341.0 L500.9051712565388 341.0 L500.83641906440334 341.0 L498.9361526173534 341.0 L498.8996051731283 341.0 L497.43359689159024 341.0 L496.94343403551284 341.0 L496.80713929998365 341.0 L496.6857243905697 341.0 L496.4605778018149 341.0 L496.33873865540136 341.0 L495.6459682344075 341.0 L495.23132529719624 341.0 L495.20083756254735 341.0 L495.0840634619335 341.0 L494.199348730338 341.0 L493.67176989077325 341.0 L493.50125241511887 341.0 L493.23567718688537 341.0 L492.15272051841566 341.0 L490.88637880745864 341.0 L490.8763662409747 341.0 L490.6819166389014 341.0 L490.00429835831346 341.0 L489.97540151241265 341.0 L486.81509098067727 341.0 L485.80131647427515 341.0 L485.55290851219615 341.0 L485.5521660974464 341.0 L485.31566256955284 341.0 L485.29558584019196 341.0 L485.0473527325512 341.0 L484.99555282160327 341.0 L484.3153776531526 341.0 L483.6645780304598 341.0 L483.4794903070406 341.0 L482.35026027448384 341.0 L482.2102104682144 341.0 L482.0503877780038 341.0 L481.7102442976866 341.0 L481.6285586099948 341.0 L481.50791764645874 341.0 L480.99659167032587 341.0 L480.9961187034005 341.0 L480.24430194487104 341.0 L479.4090968177179 341.0 L479.3699638209682 341.0 L477.3817283922863 341.0 L476.8736701876369 341.0 L476.84926222782724 341.0 L476.4327790193074 341.0 L475.90265189127877 341.0 L475.8223363744373 341.0 L475.00723377484064 341.0 L474.5119657424375 341.0 L472.6751169938989 341.0 L472.6550058669436 341.0 L472.43712290357416 341.0 L472.3888200814072 341.0 L469.49865392504944 341.0 L469.07271424449027 341.0 L468.11998113610935 341.0 L467.5935546159626 341.0 L465.20138250137825 341.0 L463.93407765777283 341.0 L463.38263548697887 341.0 L463.29784254991137 341.0 L462.8820788244111 341.0 L461.70053291698787 341.0 L461.5397872246558 341.0 L461.3652452304377 341.0 L461.046990086129 341.0 L459.2926181699577 341.0 L459.17280274869063 341.0 L458.79571338534606 341.0 L458.72856641429007 341.0 L458.2745869612281 341.0 L457.07719809504124 341.0 L455.43776860757407 341.0 L454.0570147641629 341.0 L453.863089725407 341.0 L453.82074628649843 341.0 L453.75987400998383 341.0 L453.74800683985904 341.0 L453.3496339648773 341.0 L453.1185365922629 341.0 L452.48545173077036 341.0 L452.01361992612965 341.0 L451.7269790376922 341.0 L451.6494812571382 341.0 L450.26418119831305 341.0 L448.86853319645525 341.0 L448.8516067134633 341.0 L448.6474827879192 341.0 L448.4240704112235 341.0 L445.80887575934776 341.0 L443.69079514411624 341.0 L443.480837959828 341.0 L443.4462511784932 341.0 L443.44069596697136 341.0 L442.89993998222235 341.0 L442.39624740561703 341.0 L441.99327958529466 341.0 L440.59246334485397 341.0 L440.2211069139357 341.0 L439.7359431749355 341.0 L438.2284513943523 341.0 L437.7744146119667 341.0 L437.489656991831 341.0 L437.28975537101996 341.0 L437.2228377172605 341.0 L436.1448515012062 341.0 L436.13966319735937 341.0 L435.5040787773287 341.0 L434.90299227818014 341.0 L434.24897934686123 341.0 L431.8139478294488 341.0 L431.2987807885902 341.0 L431.10574435436047 341.0 L429.79097942965564 341.0 L429.5774563613968 341.0 L429.5129379398586 341.0 L429.3017567744964 341.0 L424.58490062586225 341.0 L422.7785510778376 341.0 L417.01218705498104 341.0 L410.759392315058 341.0 L410.6688807778946 341.0 L408.9948788414231 341.0 L408.7445675457775 341.0 L406.9804525109457 341.0 L406.87400342163437 341.0 L406.29425203051414 341.0 L406.2687834782055 341.0 L399.71777592573926 341.0 L388.95705316010026 341.0 L385.43514938137105 341.0 L381.41391865407877 341.0 L376.63356741234475 341.0 L368.9003088017671 341.0 L366.1698736087019 341.0 L365.1379773028966 341.0 L361.2056930222161 341.0 L360.5667663025806 341.0 L357.6151574429323 341.0 L353.2901959556366 341.0 L352.0678459016608 341.0 L347.8485710236646 341.0 L346.7743570771463 341.0 L343.6387296859766 341.0 L341.86797018246216 341.0 L339.3982945543912 341.0 L337.9269718444921 341.0 L334.71253956417513 341.0 L333.2307800507915 341.0 L332.46187342069607 341.0 L331.37920626531377 341.0 L330.8882092675685 341.0 L328.55157780234094 341.0 L327.79550434148314 341.0 L326.75533541418554 341.0 L326.5311519580782 341.0 L325.84668568970574 341.0 L319.3856163811606 341.0 L319.1272789801169 341.0 L318.8275842045423 341.0 L317.1058986026055 341.0 L309.51674584799 341.0 L301.93531535335296 341.0 L298.23040490567564 341.0 L297.0385683845452 341.0 L278.10202469019623 341.0 L273.90514837919363 341.0 L271.8232941639717 341.0 L263.0286576425815 341.0 L217.1078488337971 341.0 L214.66404019683887 341.0 L177.44520365615426 341.0 L171.4723107426007 341.0 L157.9245974054993 341.0 L151.6670787292569 341.0 L108.43012217109936 341.0 L56.27157616941258 341.0 L50.18324779496652 341.0 L34.08333040103571 341.0 L24.484268866695857 341.0 Z\" fill=\"rgb(71,71,71)\" stroke-width=\"1.0\" fill-opacity=\"0.10196078431372549\">\n",
" </path>\n",
" </g>\n",
" <g>\n",
" <path d=\"M24.484268866695857 340.754424016154 L24.484268866695857 340.754424016154 L34.08333040103571 339.3357018221957 L50.18324779496652 338.76125711346566 L56.27157616941258 327.8670380540279 L108.43012217109936 325.0102479734427 L151.6670787292569 324.67155926152066 L157.9245974054993 324.56463358304745 L171.4723107426007 322.37379053739676 L177.44520365615426 321.53114546886854 L214.66404019683887 319.6995439805951 L217.1078488337971 318.1722168002605 L263.0286576425815 318.1200953394024 L271.8232941639717 318.10877346032333 L273.90514837919363 317.9526299509586 L278.10202469019623 317.60053615435226 L297.0385683845452 315.42182621704035 L298.23040490567564 315.3685995507469 L301.93531535335296 309.58924453813506 L309.51674584799 308.7068526315835 L317.1058986026055 308.53117410965615 L318.8275842045423 306.9569321852423 L319.1272789801169 306.8048212430357 L319.3856163811606 304.6496363056376 L325.84668568970574 301.85949964747306 L326.5311519580782 284.8943597373715 L326.75533541418554 284.6763004958722 L327.79550434148314 270.4850129859655 L328.55157780234094 270.3615772544535 L330.8882092675685 268.7456432510899 L331.37920626531377 266.60403940254207 L332.46187342069607 263.49649073462757 L333.2307800507915 262.77501638844006 L334.71253956417513 249.13867863634695 L337.9269718444921 234.6677249708681 L339.3982945543912 231.84463386957177 L341.86797018246216 226.6313979162113 L343.6387296859766 209.0983533038999 L346.7743570771463 205.78841224525618 L347.8485710236646 190.26549904035627 L352.0678459016608 179.60311417148193 L353.2901959556366 174.50079571533544 L357.6151574429323 174.4814818430601 L360.5667663025806 169.883613035924 L361.2056930222161 160.90012168012547 L365.1379773028966 160.1652279415228 L366.1698736087019 160.05273636499658 L368.9003088017671 157.3616978356283 L376.63356741234475 157.30937454038093 L381.41391865407877 156.83781401494193 L385.43514938137105 153.02677833662287 L388.95705316010026 150.30656973984387 L399.71777592573926 149.80023177559875 L406.2687834782055 147.59676385536304 L406.29425203051414 146.4126942460131 L406.87400342163437 145.57455466283852 L406.9804525109457 142.1421740341324 L408.7445675457775 139.665365158113 L408.9948788414231 134.87644037598122 L410.6688807778946 132.79549218725438 L410.759392315058 132.05044797210914 L417.01218705498104 131.41872098494247 L422.7785510778376 129.6662865749139 L424.58490062586225 129.34069016160382 L429.3017567744964 127.8069461356958 L429.5129379398586 127.05392175507839 L429.5774563613968 125.83591687903453 L429.79097942965564 125.82066342629989 L431.10574435436047 122.76483453447042 L431.2987807885902 116.81273435182393 L431.8139478294488 116.58107257895526 L434.24897934686123 116.02372286145328 L434.90299227818014 115.11890662010322 L435.5040787773287 114.1558830959815 L436.13966319735937 113.21366648446013 L436.1448515012062 95.46748113249902 L437.2228377172605 94.96376751131518 L437.28975537101996 94.8977370284168 L437.489656991831 94.58778449719958 L437.7744146119667 86.07928111236996 L438.2284513943523 85.67142772327023 L439.7359431749355 85.6502438496556 L440.2211069139357 85.41247534650941 L440.59246334485397 85.28180032290334 L441.99327958529466 84.94049932456784 L442.39624740561703 84.4903156935705 L442.89993998222235 84.31245961132248 L443.44069596697136 83.20947565153358 L443.4462511784932 80.69556053413424 L443.480837959828 80.60551042352955 L443.69079514411624 79.81559167041002 L445.80887575934776 79.27374870970885 L448.4240704112235 79.0862705831093 L448.6474827879192 75.71252521001867 L448.8516067134633 74.66912096869424 L448.86853319645525 74.35977157509984 L450.26418119831305 74.11350492847242 L451.6494812571382 73.79831725578447 L451.7269790376922 72.65466748196098 L452.01361992612965 72.10143335460975 L452.48545173077036 71.458213787597 L453.1185365922629 70.81636146734002 L453.3496339648773 70.41419893047572 L453.74800683985904 66.41823812073415 L453.75987400998383 65.83417102426705 L453.82074628649843 65.24337044260528 L453.863089725407 64.52103015439548 L454.0570147641629 63.70599042168317 L455.43776860757407 63.582576285306175 L457.07719809504124 63.538701991254015 L458.2745869612281 63.410634446663835 L458.72856641429007 62.328727453125 L458.79571338534606 62.30267421994688 L459.17280274869063 61.01575636832564 L459.2926181699577 60.850753740969935 L461.046990086129 60.628007248704876 L461.3652452304377 60.21839988442423 L461.5397872246558 59.22793733754952 L461.70053291698787 58.50224026492299 L462.8820788244111 57.70200083049525 L463.29784254991137 57.438120260781886 L463.38263548697887 57.064125830478474 L463.93407765777283 55.46645898395849 L465.20138250137825 55.215756673703766 L467.5935546159626 53.74690942425906 L468.11998113610935 53.630027358380914 L469.07271424449027 53.53181760612887 L469.49865392504944 53.50377926114788 L472.3888200814072 52.58353913337379 L472.43712290357416 52.544021676890736 L472.6550058669436 52.41852555583483 L472.6751169938989 52.218031591136764 L474.5119657424375 52.12793115547356 L475.00723377484064 51.94301159452755 L475.8223363744373 51.59418827810572 L475.90265189127877 51.45641051538831 L476.4327790193074 51.11218898488687 L476.84926222782724 50.89993692701296 L476.8736701876369 50.53000230578709 L477.3817283922863 50.49272040362689 L479.3699638209682 50.28491026662789 L479.4090968177179 49.638055582141874 L480.24430194487104 49.346159636124696 L480.9961187034005 48.78965956890886 L480.99659167032587 48.191247159996806 L481.50791764645874 44.4276536659454 L481.6285586099948 43.86605138561646 L481.7102442976866 42.830257826923855 L482.0503877780038 42.80985229386505 L482.2102104682144 38.91562200646422 L482.35026027448384 38.61814722820537 L483.4794903070406 38.17770552126672 L483.6645780304598 36.81872291081845 L484.3153776531526 36.755951309304066 L484.99555282160327 36.68895480657562 L485.0473527325512 36.60959585212214 L485.29558584019196 36.51291126581998 L485.31566256955284 36.4182013752926 L485.5521660974464 36.16061410866644 L485.55290851219615 35.93325652091744 L485.80131647427515 35.91255327259603 L486.81509098067727 35.893049927810864 L489.97540151241265 35.87811834178842 L490.00429835831346 34.95416881080274 L490.6819166389014 34.85761505439103 L490.8763662409747 33.26703164108426 L490.88637880745864 32.935341279069576 L492.15272051841566 32.70834653537378 L493.23567718688537 32.67097623051416 L493.50125241511887 30.182505142192213 L493.67176989077325 28.549051570458175 L494.199348730338 28.510507955364574 L495.0840634619335 27.811667142076885 L495.20083756254735 27.792845226817576 L495.23132529719624 25.3037324272305 L495.6459682344075 25.128186299505558 L496.33873865540136 24.013128637076193 L496.4605778018149 23.813386190707945 L496.6857243905697 23.7920125393519 L496.80713929998365 23.551415607672197 L496.94343403551284 23.377223410974864 L497.43359689159024 23.36340927780526 L498.8996051731283 22.209648593084182 L498.9361526173534 21.622526548089468 L500.83641906440334 21.422147274161546 L500.9051712565388 18.80030547128797 L501.0944612194271 18.468809579950403 L502.58092460386706 18.420379170254478 L503.12728453006366 18.386704380569142 L503.422327030974 17.595167861865946 L503.77171199836357 17.591367957487705 L504.09268168617655 17.26203924859675 L504.3596586163885 16.909729119100575 L504.47379270161946 16.85053891429959 L506.4605089032084 16.82016673042358 L507.9516646928405 16.8150016014489 L508.41827952897165 16.788999227484567 L508.6937010686497 16.78649350505009 L508.84698821589336 16.76231179936923 L508.93248917011533 16.7254772141049 L509.598114156066 16.724041023163636 L510.237800489248 16.722680186271248 L510.4437245555746 16.63408736574155 L510.8818696492717 16.607279256686127 L511.04732781205894 16.561759764361057 L511.0790796583078 16.56054135615966 L511.52284875871646 16.558028308167025 L512.022485285629 16.29417120313218 L512.193498659939 16.29363121029462 L512.5075229001159 16.292268770936403 L512.7655535892754 16.26686266688415 L512.9100464181756 16.266015229527 L513.502748503649 16.26512990529875 L513.601415137191 16.249085406743347 L513.7444489347881 16.247923390078256 L513.782145831965 16.2473084628852 L513.7959077362566 16.24608173712295 L513.8285195223698 16.245686004365837 L513.8379788608754 16.245105911728047 L513.8481232848053 16.2440012022941 L513.8490577527909 16.242351883394747 L513.9311676774832 16.242283931211887 L513.9573442469464 16.24111115513324 L513.9845441448479 16.240870708947796 L513.9893196775602 16.240277720275344 L513.9935563146246 16.239609644631628 L514.0055610751269 16.23920547985182 L514.0142206695591 16.238835081316722 L514.0246689389078 16.23869078308229 L514.0304305359969 16.238567164288156 L514.0455368129433 16.238308404207316 L514.0837496740387 16.23826876225445 L514.1696462005984 16.23809523809524 \" fill=\"none\" stroke-width=\"1.6500000000000001\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
" </path>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"cOgZkti\">\n",
" <rect x=\"25.34608493270721\" y=\"0.0\" width=\"538.6539150672928\" height=\"341.0\">\n",
" </rect>\n",
" </clipPath>\n",
" </defs>\n",
" </g>\n",
" <g>\n",
" <g transform=\"translate(25.34608493270721 341.0 ) \">\n",
" <g transform=\"translate(31.452530707092592 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.6T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(88.7818549811509 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.6T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(146.1111792552092 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.6T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(203.44050352926752 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.6T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(260.7698278033249 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.7T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(318.0991520773832 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.7T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(375.42847635144153 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.7T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(432.75780062549984 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.7T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(490.08712489955815 0.0 ) \">\n",
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
" </line>\n",
" <g transform=\"translate(0.0 7.0 ) \">\n",
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
" <tspan>1.7T</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <line x1=\"0.0\" y1=\"0.0\" x2=\"538.6539150672928\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
" </line>\n",
" </g>\n",
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
" <g transform=\"translate(0.0 341.0 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>0</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 302.8460511856706 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>1G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 264.69210237134126 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>2G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 226.53815355701187 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>3G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 188.38420474268253 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>4G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 150.23025592835313 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>5G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 112.07630711402376 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>6G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 73.9223582996944 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>7G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(0.0 35.768409485365055 ) \">\n",
" <g transform=\"translate(-3.0 0.0 ) \">\n",
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
" <tspan>8G</tspan>\n",
" </text>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g transform=\"translate(16.0 177.0 ) rotate(-90.0 ) \">\n",
" <text class=\"axis-title-y\" y=\"0.0\" text-anchor=\"middle\">\n",
" <tspan>viewCount</tspan>\n",
" </text>\n",
" </g>\n",
" <g transform=\"translate(324.17304246635365 393.0 ) \">\n",
" <text class=\"axis-title-x\" y=\"0.0\" text-anchor=\"middle\">\n",
" <tspan>publishedAt</tspan>\n",
" </text>\n",
" </g>\n",
" <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\" pointer-events=\"none\">\n",
" </path>\n",
" </g>\n",
" <g id=\"d6ndQ2r\">\n",
" </g>\n",
"</svg>\n",
" <script>document.getElementById(\"9b52e313-269a-4d79-a1c7-21714fb34254\").style.display = \"none\";</script>"
],
"application/plot+json": {
"output_type": "lets_plot_spec",
"output": {
"mapping": {},
"data": {
"publishedAt": [
1.577569041E12,
1.580917785E12,
1.586534428E12,
1.588658412E12,
1.606854526E12,
1.62193824E12,
1.624121248E12,
1.628847525E12,
1.630931238E12,
1.643915461E12,
1.644768012E12,
1.660788019E12,
1.66385613E12,
1.664582409E12,
1.666046538E12,
1.672652771E12,
1.673068557E12,
1.674361058E12,
1.677005928E12,
1.679653492E12,
1.680254122E12,
1.680358674E12,
1.680448798E12,
1.682702817E12,
1.682941601E12,
1.68301981E12,
1.683382685E12,
1.68364645E12,
1.684461611E12,
1.684632901E12,
1.685010602E12,
1.685278844E12,
1.685795773E12,
1.686917165E12,
1.687430453E12,
1.688292028E12,
1.688909778E12,
1.690003678E12,
1.69037843E12,
1.691850373E12,
1.692276804E12,
1.693785617E12,
1.69481532E12,
1.695038217E12,
1.69641004E12,
1.696770029E12,
1.697722573E12,
1.70042041E12,
1.702088091E12,
1.703490944E12,
1.704719601E12,
1.708473604E12,
1.710758999E12,
1.710767884E12,
1.710970137E12,
1.711007273E12,
1.711622705E12,
1.711710029E12,
1.712294024E12,
1.7123256E12,
1.71450696E12,
1.716518623E12,
1.717148789E12,
1.718794319E12,
1.718867992E12,
1.7188905E12,
1.71896499E12,
1.719423661E12,
1.719491004E12,
1.719670726E12,
1.720520215E12,
1.720748375E12,
1.720958071E12,
1.721179802E12,
1.721181612E12,
1.72155768E12,
1.721581025E12,
1.721650763E12,
1.721750104E12,
1.7219085E12,
1.722434406E12,
1.722603661E12,
1.722733213E12,
1.723221904E12,
1.723362484E12,
1.723538203E12,
1.723726852E12,
1.72372879E12,
1.723740856E12,
1.723814102E12,
1.724553019E12,
1.72546536E12,
1.7255433E12,
1.725614511E12,
1.725620416E12,
1.726107304E12,
1.726590582E12,
1.726617618E12,
1.726717616E12,
1.72688222E12,
1.727103079E12,
1.7271837E12,
1.727322677E12,
1.727326817E12,
1.727348053E12,
1.727362825E12,
1.727430478E12,
1.72791217E12,
1.728484104E12,
1.728901827E12,
1.729060203E12,
1.729083628E12,
1.72921518E12,
1.729256979E12,
1.729869012E12,
1.729980039E12,
1.73004093E12,
1.730097008E12,
1.730509204E12,
1.730654248E12,
1.730683829E12,
1.730876206E12,
1.73131832E12,
1.732152857E12,
1.732336507E12,
1.732668879E12,
1.732817473E12,
1.733825741E12,
1.733842592E12,
1.733918603E12,
1.733925619E12,
1.734566425E12,
1.734739205E12,
1.735023563E12,
1.735051582E12,
1.735236523E12,
1.735381818E12,
1.735390333E12,
1.735567575E12,
1.736261194E12,
1.736274846E12,
1.736566217E12,
1.736828497E12,
1.736828662E12,
1.737007044E12,
1.737049131E12,
1.737077628E12,
1.737196291E12,
1.737252047E12,
1.737300905E12,
1.73769485E12,
1.73775942E12,
1.737986459E12,
1.738223746E12,
1.738241817E12,
1.738328416E12,
1.73833542E12,
1.738417927E12,
1.738418186E12,
1.738504846E12,
1.738858513E12,
1.739961024E12,
1.739971105E12,
1.7402075E12,
1.740275336E12,
1.740278829E12,
1.740720607E12,
1.741098409E12,
1.741191058E12,
1.741250545E12,
1.741434597E12,
1.74174324E12,
1.741783978E12,
1.741794614E12,
1.741939267E12,
1.742180948E12,
1.742223453E12,
1.742301998E12,
1.742344355E12,
1.742391903E12,
1.742562902E12,
1.743074336E12,
1.743087086E12,
1.743750016E12,
1.743774001E12,
1.743840037E12,
1.744358607E12,
1.744549211E12,
1.74465214E12,
1.744774027E12,
1.744886001E12,
1.744979139E12,
1.745018956E12,
1.745712045E12,
1.746232252E12,
1.746395036E12,
1.74649112E12,
1.746544596E12,
1.746574424E12,
1.746806635E12,
1.747029797E12,
1.747101636E12,
1.747254488E12,
1.74731221E12,
1.747323287E12,
1.747478101E12,
1.747652405E12,
1.747712065E12,
1.747821616E12,
1.747911633E12,
1.747962041E12,
1.748168812E12,
1.748203233E12,
1.748253132E12,
1.748266283E12,
1.748271084E12,
1.748282461E12,
1.748285761E12,
1.7482893E12,
1.748289626E12,
1.748318271E12,
1.748327403E12,
1.748336892E12,
1.748338558E12,
1.748340036E12,
1.748344224E12,
1.748347245E12,
1.74835089E12,
1.7483529E12,
1.74835817E12,
1.748371501E12,
1.748401467E12
],
"viewCount": [
6436450.0,
4.3620601E7,
5.8676571E7,
3.4420977E8,
4.19085115E8,
4.27962013E8,
4.30764493E8,
4.88185628E8,
5.10271024E8,
5.58276579E8,
5.98307224E8,
5.99673307E8,
5.99970049E8,
6.04062509E8,
6.13290749E8,
6.7039388E8,
6.7178893E8,
8.23263553E8,
8.46390698E8,
8.50995163E8,
8.92255425E8,
8.96242193E8,
9.52728743E8,
1.025857128E9,
1.470506776E9,
1.476222023E9,
1.84817009E9,
1.851405292E9,
1.893758287E9,
1.949888882E9,
2.031336511E9,
2.05024607E9,
2.407649122E9,
2.786927129E9,
2.860919237E9,
2.997556102E9,
3.457090309E9,
3.543842563E9,
3.950692016E9,
4.230148932E9,
4.363878693E9,
4.364384902E9,
4.484893236E9,
4.720347013E9,
4.739608289E9,
4.742556649E9,
4.813087711E9,
4.814459084E9,
4.8268185E9,
4.926704247E9,
4.997999845E9,
5.011270764E9,
5.069022792E9,
5.100056791E9,
5.1220241E9,
5.211985447E9,
5.276901634E9,
5.40241747E9,
5.456958304E9,
5.47648562E9,
5.493042936E9,
5.538973553E9,
5.547507307E9,
5.587706135E9,
5.607442608E9,
5.639366037E9,
5.639765824E9,
5.719857898E9,
5.875860104E9,
5.881931868E9,
5.896539785E9,
5.920254663E9,
5.945495131E9,
5.970190258E9,
6.4353108E9,
6.448512936E9,
6.450243569E9,
6.458367303E9,
6.681371832E9,
6.692061509E9,
6.69261673E9,
6.698848549E9,
6.70227349E9,
6.711218855E9,
6.723017991E9,
6.727679529E9,
6.756588305E9,
6.822477032E9,
6.82483721E9,
6.84554067E9,
6.859742161E9,
6.864655889E9,
6.953080429E9,
6.980427644E9,
6.98853557E9,
6.994990122E9,
7.003251067E9,
7.033225678E9,
7.047725727E9,
7.064584259E9,
7.081406956E9,
7.091947478E9,
7.19668004E9,
7.211988209E9,
7.22747286E9,
7.246405115E9,
7.267766986E9,
7.271001622E9,
7.27215155E9,
7.27550815E9,
7.303864507E9,
7.304547352E9,
7.338276963E9,
7.342601617E9,
7.348439715E9,
7.359175363E9,
7.385134997E9,
7.404155232E9,
7.425129193E9,
7.432045399E9,
7.441847646E9,
7.483721866E9,
7.490292675E9,
7.528790584E9,
7.531854017E9,
7.534428056E9,
7.53516293E9,
7.559282062E9,
7.560317799E9,
7.563607003E9,
7.568861871E9,
7.571223368E9,
7.576070037E9,
7.585212559E9,
7.58882366E9,
7.597845571E9,
7.603408614E9,
7.613104455E9,
7.614081599E9,
7.619528221E9,
7.636482028E9,
7.644132506E9,
7.658718154E9,
7.674402308E9,
7.773044614E9,
7.787763989E9,
7.814911731E9,
7.815446552E9,
7.917512797E9,
7.925309494E9,
7.936853298E9,
7.972471698E9,
7.974116917E9,
7.975872869E9,
7.977952836E9,
7.980486901E9,
7.98296921E9,
7.989720471E9,
7.995679424E9,
7.996222048E9,
7.996733223E9,
7.997124574E9,
8.021340928E9,
8.023871564E9,
8.06556013E9,
8.074253604E9,
8.080203047E9,
8.081182508E9,
8.146404357E9,
8.189216533E9,
8.190226746E9,
8.208543089E9,
8.209036404E9,
8.274275072E9,
8.278876067E9,
8.30810129E9,
8.313336461E9,
8.313896656E9,
8.320202607E9,
8.324768116E9,
8.325130179E9,
8.355369793E9,
8.370758031E9,
8.376009893E9,
8.444727336E9,
8.453415713E9,
8.454685055E9,
8.455567658E9,
8.476313519E9,
8.476413113E9,
8.485044689E9,
8.494278599E9,
8.495829951E9,
8.496625994E9,
8.49676137E9,
8.497442882E9,
8.497508556E9,
8.498142349E9,
8.499107769E9,
8.499145411E9,
8.499181078E9,
8.501503061E9,
8.502205691E9,
8.503398739E9,
8.503430673E9,
8.503496539E9,
8.51041213E9,
8.510426283E9,
8.510461992E9,
8.511127876E9,
8.511150087E9,
8.511173291E9,
8.511593811E9,
8.511624267E9,
8.511640384E9,
8.511672536E9,
8.511682908E9,
8.511698112E9,
8.511727066E9,
8.511770294E9,
8.511772075E9,
8.511802813E9,
8.511809115E9,
8.511824657E9,
8.511842167E9,
8.51185276E9,
8.511862468E9,
8.51186625E9,
8.51186949E9,
8.511876272E9,
8.511877311E9,
8.511881859E9
]
},
"kind": "plot",
"scales": [
{
"aesthetic": "x",
"limits": [
null,
null
]
},
{
"aesthetic": "y",
"limits": [
null,
null
]
}
],
"layers": [
{
"mapping": {
"x": "publishedAt",
"y": "viewCount"
},
"stat": "identity",
"sampling": "none",
"inherit_aes": false,
"position": "identity",
"geom": "area"
}
],
"data_meta": {
"series_annotations": [
{
"type": "int",
"column": "publishedAt"
},
{
"type": "int",
"column": "viewCount"
}
]
}
},
"apply_color_scheme": true,
"swing_enabled": true
}
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 23
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": ""
}
],
"metadata": {
"kernelspec": {
"display_name": "Kotlin",
"language": "kotlin",
"name": "kotlin"
},
"language_info": {
"codemirror_mode": "text/x-kotlin",
"file_extension": ".kt",
"mimetype": "text/x-kotlin",
"name": "kotlin",
"nbconvert_exporter": "",
"pygments_lexer": "kotlin",
"version": "1.8.20-Beta"
},
"ktnbPluginMetadata": {
"projectLibraries": []
}
},
"nbformat": 4,
"nbformat_minor": 4
}