HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="container">
<div class="card shadow">
<div class="card-body">
<div class="text-center">
<h2 class="mb-2">NBA playoffs days per game</h2>
<label for="season-filter">Filter by season </label>
<select class="form-select" aria-label="Default select example" id="season-filter">
<option value="" selected>Seasons 2000-01 to 2020-21</option>
<option value="2020-21">2020-21</option>
<option value="2019-20">2019-20</option>
<option value="2018-19">2018-19</option>
<option value="2017-18">2017-18</option>
<option value="2016-17">2016-17</option>
<option value="2015-16">2015-16</option>
<option value="2014-15">2014-15</option>
<option value="2013-14">2013-14</option>
<option value="2012-13">2012-13</option>
<option value="2011-12">2011-12</option>
<option value="2010-11">2010-11</option>
<option value="2009-10">2009-10</option>
<option value="2008-09">2008-09</option>
<option value="2007-08">2007-08</option>
<option value="2006-07">2006-07</option>
<option value="2005-06">2005-06</option>
<option value="2004-05">2004-05</option>
<option value="2003-04">2003-04</option>
<option value="2002-03">2002-03</option>
<option value="2001-02">2001-02</option>
<option value="2000-01">2000-01</option>
</select>
</div>
<div class="table-responsive">
<table id="nba-postseason-table" class="table table-striped table-bordered" style="width: 100%">
<thead>
<tr>
<td>Team</td>
<td>Season</td>
<td>Games</td>
<td>Days</td>
<td>Days P/G</td>
<td>B2B</td>
<td>1D</td>
<td>2D</td>
<td>3D</td>
<td>4D</td>
<td>5D+</td>
<td>First Game</td>
<td>Last Game</td>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
table.dataTable.display tbody tr.DTFC_NoData{background-color:transparent}tr.even td{background-color:#fff}tr.odd td{background-color:#f9f9f9}tr.selected td{background-color:#a6b4cd}thead th{background-color:white}tfoot th{background-color:white}tr.dt-rowReorder-moving td.dtfc-fixed-left,tr.dt-rowReorder-moving td.dtfc-fixed-right{border-top:2px solid #555 !important;border-bottom:2px solid #555 !important}tr.dt-rowReorder-moving td.dtfc-fixed-left:first-child{border-left:2px solid #555 !important}tr.dt-rowReorder-moving td.dtfc-fixed-right:last-child{border-right:2px solid #555 !important}th, td { white-space: nowrap; }div.dataTables_wrapper {width: 900px;margin: 0 auto;}
$(document).ready(function () {
the_table.clear().draw();
the_table.rows.add(nba_data).draw();
$("#season-filter").change(function () {
the_table.search($(this).val()).draw();
});
});
let the_table = $("#nba-postseason-table").DataTable({
pageLength: 20,
lengthMenu: [20, 30, 50, 75, 100],
order: [],
paging: true,
searching: true,
info: true,
data: [],
columns: [
{ data: "name" },
{ data: "season" },
{ data: "games" },
{ data: "days" },
{ data: "days_per_game" },
{ data: "back2backs" },
{ data: "one_days" },
{ data: "two_days" },
{ data: "three_days" },
{ data: "four_days" },
{ data: "five_plus_days" },
{ data: "first_date" },
{ data: "last_date" }
],
scrollY: 600,
scrollX: true,
scrollCollapse: true,
fixedColumns: true
});
let nba_data = [
{
tid: 1610612746,
name: "Clippers",
season: "2011-12",
games: 11,
days: 21,
back2backs: 1,
one_days: 7,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-20",
days_per_game: 1.90909
},
{
tid: 1610612747,
name: "Lakers",
season: "2011-12",
games: 12,
days: 22,
back2backs: 1,
one_days: 9,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-21",
days_per_game: 1.83333
},
{
tid: 1610612765,
name: "Pistons",
season: "2002-03",
games: 17,
days: 34,
back2backs: 1,
one_days: 12,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-24",
days_per_game: 2
},
{
tid: 1610612758,
name: "Kings",
season: "2002-03",
games: 12,
days: 28,
back2backs: 1,
one_days: 8,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2003-04-19",
last_date: "2003-05-17",
days_per_game: 2.33333
},
{
tid: 1610612759,
name: "Spurs",
season: "2011-12",
games: 14,
days: 38,
back2backs: 1,
one_days: 8,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2012-04-29",
last_date: "2012-06-06",
days_per_game: 2.71429
},
{
tid: 1610612760,
name: "Thunder",
season: "2011-12",
games: 20,
days: 54,
back2backs: 1,
one_days: 13,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 3,
first_date: "2012-04-28",
last_date: "2012-06-21",
days_per_game: 2.7
},
{
tid: 1610612755,
name: "76ers",
season: "2002-03",
games: 12,
days: 26,
back2backs: 1,
one_days: 6,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-16",
days_per_game: 2.16667
},
{
tid: 1610612742,
name: "Mavericks",
season: "2002-03",
games: 20,
days: 40,
back2backs: 1,
one_days: 16,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-29",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2007-08",
games: 21,
days: 58,
back2backs: 0,
one_days: 11,
two_days: 6,
three_days: 0,
four_days: 0,
five_plus_days: 3,
first_date: "2008-04-20",
last_date: "2008-06-17",
days_per_game: 2.7619
},
{
tid: 1610612741,
name: "Bulls",
season: "2006-07",
games: 10,
days: 26,
back2backs: 0,
one_days: 4,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2007-04-21",
last_date: "2007-05-17",
days_per_game: 2.6
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2006-07",
games: 20,
days: 53,
back2backs: 0,
one_days: 10,
two_days: 6,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2007-04-22",
last_date: "2007-06-14",
days_per_game: 2.65
},
{
tid: 1610612765,
name: "Pistons",
season: "2007-08",
games: 17,
days: 40,
back2backs: 0,
one_days: 12,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2008-04-20",
last_date: "2008-05-30",
days_per_game: 2.35294
},
{
tid: 1610612764,
name: "Wizards",
season: "2007-08",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-02",
days_per_game: 2.16667
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2007-08",
games: 13,
days: 29,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-18",
days_per_game: 2.23077
},
{
tid: 1610612762,
name: "Jazz",
season: "2007-08",
games: 12,
days: 27,
back2backs: 0,
one_days: 6,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-16",
days_per_game: 2.25
},
{
tid: 1610612761,
name: "Raptors",
season: "2007-08",
games: 5,
days: 8,
back2backs: 0,
one_days: 4,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-20",
last_date: "2008-04-28",
days_per_game: 1.6
},
{
tid: 1610612759,
name: "Spurs",
season: "2007-08",
games: 17,
days: 40,
back2backs: 0,
one_days: 10,
two_days: 4,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-29",
days_per_game: 2.35294
},
{
tid: 1610612740,
name: "Pelicans",
season: "2007-08",
games: 12,
days: 30,
back2backs: 0,
one_days: 5,
two_days: 4,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-19",
days_per_game: 2.5
},
{
tid: 1610612742,
name: "Mavericks",
season: "2007-08",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-04-29",
days_per_game: 2
},
{
tid: 1610612743,
name: "Nuggets",
season: "2007-08",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-20",
last_date: "2008-04-28",
days_per_game: 2
},
{
tid: 1610612756,
name: "Suns",
season: "2007-08",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-04-29",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2007-08",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-20",
last_date: "2008-05-01",
days_per_game: 1.83333
},
{
tid: 1610612745,
name: "Rockets",
season: "2007-08",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-19",
last_date: "2008-05-02",
days_per_game: 2.16667
},
{
tid: 1610612753,
name: "Magic",
season: "2007-08",
games: 10,
days: 23,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2008-04-20",
last_date: "2008-05-13",
days_per_game: 2.3
},
{
tid: 1610612742,
name: "Mavericks",
season: "2006-07",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-05-03",
days_per_game: 1.83333
},
{
tid: 1610612743,
name: "Nuggets",
season: "2006-07",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-05-02",
days_per_game: 2
},
{
tid: 1610612744,
name: "Warriors",
season: "2006-07",
games: 11,
days: 23,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-05-15",
days_per_game: 2.09091
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2005-06",
games: 13,
days: 29,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-21",
days_per_game: 2.23077
},
{
tid: 1610612741,
name: "Bulls",
season: "2005-06",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-04",
days_per_game: 2
},
{
tid: 1610612742,
name: "Mavericks",
season: "2005-06",
games: 23,
days: 58,
back2backs: 0,
one_days: 14,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2006-04-23",
last_date: "2006-06-20",
days_per_game: 2.52174
},
{
tid: 1610612743,
name: "Nuggets",
season: "2005-06",
games: 5,
days: 9,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-01",
days_per_game: 1.8
},
{
tid: 1610612746,
name: "Clippers",
season: "2005-06",
games: 12,
days: 30,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2006-04-22",
last_date: "2006-05-22",
days_per_game: 2.5
},
{
tid: 1610612747,
name: "Lakers",
season: "2005-06",
games: 7,
days: 13,
back2backs: 0,
one_days: 5,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-05-06",
days_per_game: 1.85714
},
{
tid: 1610612748,
name: "Heat",
season: "2005-06",
games: 23,
days: 59,
back2backs: 0,
one_days: 15,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2006-04-22",
last_date: "2006-06-20",
days_per_game: 2.56522
},
{
tid: 1610612749,
name: "Bucks",
season: "2005-06",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-05-03",
days_per_game: 2
},
{
tid: 1610612765,
name: "Pistons",
season: "2006-07",
games: 16,
days: 42,
back2backs: 0,
one_days: 8,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2007-04-21",
last_date: "2007-06-02",
days_per_game: 2.625
},
{
tid: 1610612764,
name: "Wizards",
season: "2006-07",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-04-30",
days_per_game: 2
},
{
tid: 1610612762,
name: "Jazz",
season: "2006-07",
games: 17,
days: 39,
back2backs: 0,
one_days: 12,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2007-04-21",
last_date: "2007-05-30",
days_per_game: 2.29412
},
{
tid: 1610612745,
name: "Rockets",
season: "2006-07",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-21",
last_date: "2007-05-05",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2006-07",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-05-02",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2006-07",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-21",
last_date: "2007-04-29",
days_per_game: 2
},
{
tid: 1610612751,
name: "Nets",
season: "2006-07",
games: 12,
days: 27,
back2backs: 0,
one_days: 7,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-21",
last_date: "2007-05-18",
days_per_game: 2.25
},
{
tid: 1610612753,
name: "Magic",
season: "2006-07",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-21",
last_date: "2007-04-28",
days_per_game: 1.75
},
{
tid: 1610612756,
name: "Suns",
season: "2006-07",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-22",
last_date: "2007-05-18",
days_per_game: 2.36364
},
{
tid: 1610612759,
name: "Spurs",
season: "2006-07",
games: 20,
days: 53,
back2backs: 0,
one_days: 12,
two_days: 3,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2007-04-22",
last_date: "2007-06-14",
days_per_game: 2.65
},
{
tid: 1610612761,
name: "Raptors",
season: "2006-07",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2007-04-21",
last_date: "2007-05-04",
days_per_game: 2.16667
},
{
tid: 1610612751,
name: "Nets",
season: "2005-06",
games: 11,
days: 23,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-05-16",
days_per_game: 2.09091
},
{
tid: 1610612738,
name: "Celtics",
season: "2007-08",
games: 26,
days: 58,
back2backs: 0,
one_days: 20,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2008-04-20",
last_date: "2008-06-17",
days_per_game: 2.23077
},
{
tid: 1610612737,
name: "Hawks",
season: "2007-08",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2008-04-20",
last_date: "2008-05-04",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2009-10",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-18",
last_date: "2010-04-29",
days_per_game: 1.83333
},
{
tid: 1610612754,
name: "Pacers",
season: "2010-11",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-16",
last_date: "2011-04-26",
days_per_game: 2
},
{
tid: 1610612756,
name: "Suns",
season: "2009-10",
games: 16,
days: 41,
back2backs: 0,
one_days: 11,
two_days: 1,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2010-04-18",
last_date: "2010-05-29",
days_per_game: 2.5625
},
{
tid: 1610612753,
name: "Magic",
season: "2009-10",
games: 14,
days: 40,
back2backs: 0,
one_days: 8,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2010-04-18",
last_date: "2010-05-28",
days_per_game: 2.85714
},
{
tid: 1610612749,
name: "Bucks",
season: "2009-10",
games: 7,
days: 15,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-05-02",
days_per_game: 2.14286
},
{
tid: 1610612748,
name: "Heat",
season: "2009-10",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-04-27",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2009-10",
games: 23,
days: 60,
back2backs: 0,
one_days: 14,
two_days: 4,
three_days: 2,
four_days: 0,
five_plus_days: 2,
first_date: "2010-04-18",
last_date: "2010-06-17",
days_per_game: 2.6087
},
{
tid: 1610612743,
name: "Nuggets",
season: "2009-10",
games: 6,
days: 13,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-04-30",
days_per_game: 2.16667
},
{
tid: 1610612742,
name: "Mavericks",
season: "2009-10",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-18",
last_date: "2010-04-29",
days_per_game: 1.83333
},
{
tid: 1610612741,
name: "Bulls",
season: "2009-10",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-04-27",
days_per_game: 2
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2009-10",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-05-13",
days_per_game: 2.36364
},
{
tid: 1610612738,
name: "Celtics",
season: "2009-10",
games: 24,
days: 61,
back2backs: 0,
one_days: 14,
two_days: 5,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2010-04-17",
last_date: "2010-06-17",
days_per_game: 2.54167
},
{
tid: 1610612737,
name: "Hawks",
season: "2009-10",
games: 11,
days: 23,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-05-10",
days_per_game: 2.09091
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2010-11",
games: 13,
days: 28,
back2backs: 0,
one_days: 9,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-05-15",
days_per_game: 2.15385
},
{
tid: 1610612760,
name: "Thunder",
season: "2010-11",
games: 17,
days: 38,
back2backs: 0,
one_days: 12,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-05-25",
days_per_game: 2.23529
},
{
tid: 1610612759,
name: "Spurs",
season: "2010-11",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-04-29",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2010-11",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-16",
last_date: "2011-04-28",
days_per_game: 2
},
{
tid: 1610612759,
name: "Spurs",
season: "2009-10",
games: 10,
days: 21,
back2backs: 0,
one_days: 7,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-18",
last_date: "2010-05-09",
days_per_game: 2.1
},
{
tid: 1610612760,
name: "Thunder",
season: "2009-10",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-18",
last_date: "2010-04-30",
days_per_game: 2
},
{
tid: 1610612762,
name: "Jazz",
season: "2009-10",
games: 10,
days: 23,
back2backs: 0,
one_days: 6,
two_days: 1,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-17",
last_date: "2010-05-10",
days_per_game: 2.3
},
{
tid: 1610612765,
name: "Pistons",
season: "2008-09",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-04-26",
days_per_game: 2
},
{
tid: 1610612762,
name: "Jazz",
season: "2008-09",
games: 5,
days: 8,
back2backs: 0,
one_days: 4,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-19",
last_date: "2009-04-27",
days_per_game: 1.6
},
{
tid: 1610612759,
name: "Spurs",
season: "2008-09",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-04-28",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2008-09",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-04-30",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2008-09",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-19",
last_date: "2009-04-30",
days_per_game: 1.83333
},
{
tid: 1610612753,
name: "Magic",
season: "2008-09",
games: 24,
days: 56,
back2backs: 0,
one_days: 16,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2009-04-19",
last_date: "2009-06-14",
days_per_game: 2.33333
},
{
tid: 1610612748,
name: "Heat",
season: "2008-09",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-19",
last_date: "2009-05-03",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2008-09",
games: 23,
days: 56,
back2backs: 0,
one_days: 17,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2009-04-19",
last_date: "2009-06-14",
days_per_game: 2.43478
},
{
tid: 1610612745,
name: "Rockets",
season: "2008-09",
games: 13,
days: 29,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-05-17",
days_per_game: 2.23077
},
{
tid: 1610612743,
name: "Nuggets",
season: "2008-09",
games: 16,
days: 40,
back2backs: 0,
one_days: 10,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2009-04-19",
last_date: "2009-05-29",
days_per_game: 2.5
},
{
tid: 1610612742,
name: "Mavericks",
season: "2008-09",
games: 10,
days: 25,
back2backs: 0,
one_days: 5,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2009-04-18",
last_date: "2009-05-13",
days_per_game: 2.5
},
{
tid: 1610612741,
name: "Bulls",
season: "2008-09",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-05-02",
days_per_game: 2
},
{
tid: 1610612740,
name: "Pelicans",
season: "2008-09",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-19",
last_date: "2009-04-29",
days_per_game: 2
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2008-09",
games: 14,
days: 42,
back2backs: 0,
one_days: 9,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2009-04-18",
last_date: "2009-05-30",
days_per_game: 3
},
{
tid: 1610612738,
name: "Celtics",
season: "2008-09",
games: 14,
days: 29,
back2backs: 0,
one_days: 10,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-18",
last_date: "2009-05-17",
days_per_game: 2.07143
},
{
tid: 1610612737,
name: "Hawks",
season: "2008-09",
games: 11,
days: 22,
back2backs: 0,
one_days: 8,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2009-04-19",
last_date: "2009-05-11",
days_per_game: 2
},
{
tid: 1610612766,
name: "Hornets",
season: "2009-10",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2010-04-18",
last_date: "2010-04-26",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2010-11",
games: 5,
days: 11,
back2backs: 0,
one_days: 1,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-16",
last_date: "2011-04-27",
days_per_game: 2.2
},
{
tid: 1610612749,
name: "Bucks",
season: "2002-03",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-01",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2001-02",
games: 19,
days: 52,
back2backs: 0,
one_days: 9,
two_days: 5,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-21",
last_date: "2002-06-12",
days_per_game: 2.73684
},
{
tid: 1610612750,
name: "Timberwolves",
season: "2001-02",
games: 3,
days: 7,
back2backs: 0,
one_days: 0,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-21",
last_date: "2002-04-28",
days_per_game: 2.33333
},
{
tid: 1610612751,
name: "Nets",
season: "2001-02",
games: 20,
days: 53,
back2backs: 0,
one_days: 10,
two_days: 4,
three_days: 4,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-20",
last_date: "2002-06-12",
days_per_game: 2.65
},
{
tid: 1610612753,
name: "Magic",
season: "2001-02",
games: 4,
days: 10,
back2backs: 0,
one_days: 0,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-20",
last_date: "2002-04-30",
days_per_game: 2.5
},
{
tid: 1610612754,
name: "Pacers",
season: "2001-02",
games: 5,
days: 12,
back2backs: 0,
one_days: 2,
two_days: 0,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-20",
last_date: "2002-05-02",
days_per_game: 2.4
},
{
tid: 1610612755,
name: "76ers",
season: "2001-02",
games: 5,
days: 12,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-21",
last_date: "2002-05-03",
days_per_game: 2.4
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2001-02",
games: 3,
days: 7,
back2backs: 0,
one_days: 0,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-21",
last_date: "2002-04-28",
days_per_game: 2.33333
},
{
tid: 1610612758,
name: "Kings",
season: "2001-02",
games: 16,
days: 43,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 2,
first_date: "2002-04-20",
last_date: "2002-06-02",
days_per_game: 2.6875
},
{
tid: 1610612742,
name: "Mavericks",
season: "2001-02",
games: 8,
days: 22,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-21",
last_date: "2002-05-13",
days_per_game: 2.75
},
{
tid: 1610612738,
name: "Celtics",
season: "2001-02",
games: 16,
days: 40,
back2backs: 0,
one_days: 9,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-21",
last_date: "2002-05-31",
days_per_game: 2.5
},
{
tid: 1610612750,
name: "Timberwolves",
season: "2002-03",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-01",
days_per_game: 1.83333
},
{
tid: 1610612751,
name: "Nets",
season: "2002-03",
games: 20,
days: 57,
back2backs: 0,
one_days: 12,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2003-04-19",
last_date: "2003-06-15",
days_per_game: 2.85
},
{
tid: 1610612753,
name: "Magic",
season: "2002-03",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-04",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2002-03",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-01",
days_per_game: 2
},
{
tid: 1610612756,
name: "Suns",
season: "2002-03",
games: 6,
days: 12,
back2backs: 0,
one_days: 4,
two_days: 0,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-01",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2002-03",
games: 7,
days: 15,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-04",
days_per_game: 2.14286
},
{
tid: 1610612759,
name: "Spurs",
season: "2002-03",
games: 24,
days: 57,
back2backs: 0,
one_days: 18,
two_days: 1,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2003-04-19",
last_date: "2003-06-15",
days_per_game: 2.375
},
{
tid: 1610612762,
name: "Jazz",
season: "2002-03",
games: 5,
days: 11,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2003-04-19",
last_date: "2003-04-30",
days_per_game: 2.2
},
{
tid: 1610612759,
name: "Spurs",
season: "2001-02",
games: 10,
days: 24,
back2backs: 0,
one_days: 6,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-20",
last_date: "2002-05-14",
days_per_game: 2.4
},
{
tid: 1610612760,
name: "Thunder",
season: "2001-02",
games: 5,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 0,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-20",
last_date: "2002-05-03",
days_per_game: 2.6
},
{
tid: 1610612761,
name: "Raptors",
season: "2001-02",
games: 5,
days: 11,
back2backs: 0,
one_days: 1,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-21",
last_date: "2002-05-02",
days_per_game: 2.2
},
{
tid: 1610612754,
name: "Pacers",
season: "2000-01",
games: 4,
days: 11,
back2backs: 0,
one_days: 0,
two_days: 1,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-21",
last_date: "2001-05-02",
days_per_game: 2.75
},
{
tid: 1610612755,
name: "76ers",
season: "2000-01",
games: 23,
days: 55,
back2backs: 0,
one_days: 14,
two_days: 5,
three_days: 3,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-21",
last_date: "2001-06-15",
days_per_game: 2.3913
},
{
tid: 1610612756,
name: "Suns",
season: "2000-01",
games: 4,
days: 10,
back2backs: 0,
one_days: 0,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-05-02",
days_per_game: 2.5
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2000-01",
games: 3,
days: 7,
back2backs: 0,
one_days: 0,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-04-29",
days_per_game: 2.33333
},
{
tid: 1610612758,
name: "Kings",
season: "2000-01",
games: 8,
days: 21,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-05-13",
days_per_game: 2.625
},
{
tid: 1610612759,
name: "Spurs",
season: "2000-01",
games: 13,
days: 36,
back2backs: 0,
one_days: 7,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 3,
first_date: "2001-04-21",
last_date: "2001-05-27",
days_per_game: 2.76923
},
{
tid: 1610612761,
name: "Raptors",
season: "2000-01",
games: 12,
days: 28,
back2backs: 0,
one_days: 6,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-05-20",
days_per_game: 2.33333
},
{
tid: 1610612762,
name: "Jazz",
season: "2000-01",
games: 5,
days: 12,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-21",
last_date: "2001-05-03",
days_per_game: 2.4
},
{
tid: 1610612753,
name: "Magic",
season: "2000-01",
games: 4,
days: 9,
back2backs: 0,
one_days: 0,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-05-01",
days_per_game: 2.25
},
{
tid: 1610612752,
name: "Knicks",
season: "2000-01",
games: 5,
days: 12,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-22",
last_date: "2001-05-04",
days_per_game: 2.4
},
{
tid: 1610612762,
name: "Jazz",
season: "2001-02",
games: 4,
days: 9,
back2backs: 0,
one_days: 1,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-20",
last_date: "2002-04-29",
days_per_game: 2.25
},
{
tid: 1610612765,
name: "Pistons",
season: "2001-02",
games: 10,
days: 23,
back2backs: 0,
one_days: 4,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2002-04-21",
last_date: "2002-05-14",
days_per_game: 2.3
},
{
tid: 1610612766,
name: "Hornets",
season: "2001-02",
games: 9,
days: 25,
back2backs: 0,
one_days: 2,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2002-04-20",
last_date: "2002-05-15",
days_per_game: 2.77778
},
{
tid: 1610612742,
name: "Mavericks",
season: "2000-01",
games: 10,
days: 23,
back2backs: 0,
one_days: 5,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-21",
last_date: "2001-05-14",
days_per_game: 2.3
},
{
tid: 1610612747,
name: "Lakers",
season: "2000-01",
games: 16,
days: 54,
back2backs: 0,
one_days: 7,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 3,
first_date: "2001-04-22",
last_date: "2001-06-15",
days_per_game: 3.375
},
{
tid: 1610612748,
name: "Heat",
season: "2000-01",
games: 3,
days: 6,
back2backs: 0,
one_days: 1,
two_days: 0,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2001-04-21",
last_date: "2001-04-27",
days_per_game: 2
},
{
tid: 1610612749,
name: "Bucks",
season: "2000-01",
games: 18,
days: 42,
back2backs: 0,
one_days: 11,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2001-04-22",
last_date: "2001-06-03",
days_per_game: 2.33333
},
{
tid: 1610612750,
name: "Timberwolves",
season: "2000-01",
games: 4,
days: 9,
back2backs: 0,
one_days: 2,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2001-04-21",
last_date: "2001-04-30",
days_per_game: 2.25
},
{
tid: 1610612766,
name: "Hornets",
season: "2000-01",
games: 10,
days: 29,
back2backs: 0,
one_days: 5,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2001-04-21",
last_date: "2001-05-20",
days_per_game: 2.9
},
{
tid: 1610612747,
name: "Lakers",
season: "2002-03",
games: 12,
days: 25,
back2backs: 0,
one_days: 9,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-15",
days_per_game: 2.08333
},
{
tid: 1610612754,
name: "Pacers",
season: "2005-06",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-05-04",
days_per_game: 1.83333
},
{
tid: 1610612745,
name: "Rockets",
season: "2004-05",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-07",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2004-05",
games: 15,
days: 43,
back2backs: 0,
one_days: 10,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2005-04-24",
last_date: "2005-06-06",
days_per_game: 2.86667
},
{
tid: 1610612751,
name: "Nets",
season: "2004-05",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-24",
last_date: "2005-05-01",
days_per_game: 1.75
},
{
tid: 1610612754,
name: "Pacers",
season: "2004-05",
games: 13,
days: 26,
back2backs: 0,
one_days: 10,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-19",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2004-05",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-03",
days_per_game: 2
},
{
tid: 1610612756,
name: "Suns",
season: "2004-05",
games: 15,
days: 38,
back2backs: 0,
one_days: 10,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2005-04-24",
last_date: "2005-06-01",
days_per_game: 2.53333
},
{
tid: 1610612758,
name: "Kings",
season: "2004-05",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-03",
days_per_game: 2
},
{
tid: 1610612759,
name: "Spurs",
season: "2004-05",
games: 23,
days: 60,
back2backs: 0,
one_days: 13,
two_days: 6,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2005-04-24",
last_date: "2005-06-23",
days_per_game: 2.6087
},
{
tid: 1610612743,
name: "Nuggets",
season: "2004-05",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-24",
last_date: "2005-05-04",
days_per_game: 2
},
{
tid: 1610612742,
name: "Mavericks",
season: "2004-05",
games: 13,
days: 27,
back2backs: 0,
one_days: 9,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-20",
days_per_game: 2.07692
},
{
tid: 1610612756,
name: "Suns",
season: "2005-06",
games: 20,
days: 41,
back2backs: 0,
one_days: 17,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-06-03",
days_per_game: 2.05
},
{
tid: 1610612758,
name: "Kings",
season: "2005-06",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-05",
days_per_game: 2.16667
},
{
tid: 1610612759,
name: "Spurs",
season: "2005-06",
games: 13,
days: 30,
back2backs: 0,
one_days: 7,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-22",
days_per_game: 2.30769
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2005-06",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-05-01",
days_per_game: 2
},
{
tid: 1610612764,
name: "Wizards",
season: "2005-06",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-22",
last_date: "2006-05-05",
days_per_game: 2.16667
},
{
tid: 1610612765,
name: "Pistons",
season: "2005-06",
games: 18,
days: 40,
back2backs: 0,
one_days: 13,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2006-04-23",
last_date: "2006-06-02",
days_per_game: 2.22222
},
{
tid: 1610612738,
name: "Celtics",
season: "2004-05",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-23",
last_date: "2005-05-07",
days_per_game: 2
},
{
tid: 1610612741,
name: "Bulls",
season: "2004-05",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-24",
last_date: "2005-05-06",
days_per_game: 2
},
{
tid: 1610612760,
name: "Thunder",
season: "2004-05",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2005-04-23",
last_date: "2005-05-19",
days_per_game: 2.36364
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2004-05",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-24",
last_date: "2005-05-01",
days_per_game: 1.75
},
{
tid: 1610612764,
name: "Wizards",
season: "2004-05",
games: 10,
days: 20,
back2backs: 0,
one_days: 7,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2005-04-24",
last_date: "2005-05-14",
days_per_game: 2
},
{
tid: 1610612751,
name: "Nets",
season: "2003-04",
games: 11,
days: 33,
back2backs: 0,
one_days: 4,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2004-04-17",
last_date: "2004-05-20",
days_per_game: 3
},
{
tid: 1610612752,
name: "Knicks",
season: "2003-04",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-17",
last_date: "2004-04-25",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2003-04",
games: 16,
days: 45,
back2backs: 0,
one_days: 9,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2004-04-17",
last_date: "2004-06-01",
days_per_game: 2.8125
},
{
tid: 1610612758,
name: "Kings",
season: "2003-04",
games: 12,
days: 31,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2004-04-18",
last_date: "2004-05-19",
days_per_game: 2.58333
},
{
tid: 1610612759,
name: "Spurs",
season: "2003-04",
games: 10,
days: 28,
back2backs: 0,
one_days: 4,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2004-04-17",
last_date: "2004-05-15",
days_per_game: 2.8
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2003-04",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-17",
last_date: "2004-04-25",
days_per_game: 2
},
{
tid: 1610612765,
name: "Pistons",
season: "2003-04",
games: 23,
days: 58,
back2backs: 0,
one_days: 13,
two_days: 5,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2004-04-18",
last_date: "2004-06-15",
days_per_game: 2.52174
},
{
tid: 1610612738,
name: "Celtics",
season: "2002-03",
games: 10,
days: 23,
back2backs: 0,
one_days: 5,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-19",
last_date: "2003-05-12",
days_per_game: 2.3
},
{
tid: 1610612750,
name: "Timberwolves",
season: "2003-04",
games: 18,
days: 43,
back2backs: 0,
one_days: 10,
two_days: 5,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-05-31",
days_per_game: 2.38889
},
{
tid: 1610612749,
name: "Bucks",
season: "2003-04",
games: 5,
days: 11,
back2backs: 0,
one_days: 1,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-04-29",
days_per_game: 2.2
},
{
tid: 1610612765,
name: "Pistons",
season: "2004-05",
games: 25,
days: 61,
back2backs: 0,
one_days: 16,
two_days: 5,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2005-04-23",
last_date: "2005-06-23",
days_per_game: 2.44
},
{
tid: 1610612738,
name: "Celtics",
season: "2003-04",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-17",
last_date: "2004-04-25",
days_per_game: 2
},
{
tid: 1610612740,
name: "Pelicans",
season: "2003-04",
games: 7,
days: 16,
back2backs: 0,
one_days: 2,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-05-04",
days_per_game: 2.28571
},
{
tid: 1610612742,
name: "Mavericks",
season: "2003-04",
games: 5,
days: 11,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-04-29",
days_per_game: 2.2
},
{
tid: 1610612743,
name: "Nuggets",
season: "2003-04",
games: 5,
days: 12,
back2backs: 0,
one_days: 0,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-04-30",
days_per_game: 2.4
},
{
tid: 1610612745,
name: "Rockets",
season: "2003-04",
games: 5,
days: 11,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-17",
last_date: "2004-04-28",
days_per_game: 2.2
},
{
tid: 1610612747,
name: "Lakers",
season: "2003-04",
games: 22,
days: 59,
back2backs: 0,
one_days: 13,
two_days: 3,
three_days: 3,
four_days: 0,
five_plus_days: 2,
first_date: "2004-04-17",
last_date: "2004-06-15",
days_per_game: 2.68182
},
{
tid: 1610612748,
name: "Heat",
season: "2003-04",
games: 13,
days: 30,
back2backs: 0,
one_days: 6,
two_days: 6,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2004-04-18",
last_date: "2004-05-18",
days_per_game: 2.30769
},
{
tid: 1610612740,
name: "Pelicans",
season: "2002-03",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2003-04-20",
last_date: "2003-05-02",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2018-19",
games: 16,
days: 36,
back2backs: 0,
one_days: 12,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2019-04-14",
last_date: "2019-05-20",
days_per_game: 2.25
},
{
tid: 1610612748,
name: "Heat",
season: "2017-18",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-14",
last_date: "2018-04-24",
days_per_game: 2
},
{
tid: 1610612749,
name: "Bucks",
season: "2017-18",
games: 7,
days: 13,
back2backs: 0,
one_days: 5,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-04-28",
days_per_game: 1.85714
},
{
tid: 1610612750,
name: "Timberwolves",
season: "2017-18",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-04-25",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2017-18",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-04-29",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2017-18",
games: 10,
days: 25,
back2backs: 0,
one_days: 5,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2018-04-14",
last_date: "2018-05-09",
days_per_game: 2.5
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2017-18",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-14",
last_date: "2018-04-21",
days_per_game: 1.75
},
{
tid: 1610612759,
name: "Spurs",
season: "2017-18",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-14",
last_date: "2018-04-24",
days_per_game: 2
},
{
tid: 1610612760,
name: "Thunder",
season: "2017-18",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-04-27",
days_per_game: 2
},
{
tid: 1610612745,
name: "Rockets",
season: "2017-18",
games: 17,
days: 43,
back2backs: 0,
one_days: 10,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2018-04-15",
last_date: "2018-05-28",
days_per_game: 2.52941
},
{
tid: 1610612744,
name: "Warriors",
season: "2017-18",
games: 21,
days: 55,
back2backs: 0,
one_days: 10,
two_days: 7,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2018-04-14",
last_date: "2018-06-08",
days_per_game: 2.61905
},
{
tid: 1610612759,
name: "Spurs",
season: "2018-19",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-04-27",
days_per_game: 2
},
{
tid: 1610612760,
name: "Thunder",
season: "2018-19",
games: 5,
days: 9,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-14",
last_date: "2019-04-23",
days_per_game: 1.8
},
{
tid: 1610612761,
name: "Raptors",
season: "2018-19",
games: 24,
days: 61,
back2backs: 0,
one_days: 11,
two_days: 10,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2019-04-13",
last_date: "2019-06-13",
days_per_game: 2.54167
},
{
tid: 1610612762,
name: "Jazz",
season: "2018-19",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-14",
last_date: "2019-04-24",
days_per_game: 2
},
{
tid: 1610612765,
name: "Pistons",
season: "2018-19",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-14",
last_date: "2019-04-22",
days_per_game: 2
},
{
tid: 1610612738,
name: "Celtics",
season: "2017-18",
games: 19,
days: 42,
back2backs: 0,
one_days: 14,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-05-27",
days_per_game: 2.21053
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2017-18",
games: 22,
days: 54,
back2backs: 0,
one_days: 14,
two_days: 4,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2018-04-15",
last_date: "2018-06-08",
days_per_game: 2.45455
},
{
tid: 1610612740,
name: "Pelicans",
season: "2017-18",
games: 9,
days: 24,
back2backs: 0,
one_days: 4,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2018-04-14",
last_date: "2018-05-08",
days_per_game: 2.66667
},
{
tid: 1610612761,
name: "Raptors",
season: "2017-18",
games: 10,
days: 23,
back2backs: 0,
one_days: 5,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-14",
last_date: "2018-05-07",
days_per_game: 2.3
},
{
tid: 1610612762,
name: "Jazz",
season: "2017-18",
games: 11,
days: 23,
back2backs: 0,
one_days: 7,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-15",
last_date: "2018-05-08",
days_per_game: 2.09091
},
{
tid: 1610612764,
name: "Wizards",
season: "2017-18",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2018-04-14",
last_date: "2018-04-27",
days_per_game: 2.16667
},
{
tid: 1610612759,
name: "Spurs",
season: "2016-17",
games: 16,
days: 37,
back2backs: 0,
one_days: 10,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-05-22",
days_per_game: 2.3125
},
{
tid: 1610612760,
name: "Thunder",
season: "2016-17",
games: 5,
days: 9,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-04-25",
days_per_game: 1.8
},
{
tid: 1610612761,
name: "Raptors",
season: "2016-17",
games: 10,
days: 22,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-05-07",
days_per_game: 2.2
},
{
tid: 1610612762,
name: "Jazz",
season: "2016-17",
games: 11,
days: 23,
back2backs: 0,
one_days: 7,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-05-08",
days_per_game: 2.09091
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2016-17",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-04-27",
days_per_game: 2
},
{
tid: 1610612764,
name: "Wizards",
season: "2016-17",
games: 13,
days: 29,
back2backs: 0,
one_days: 7,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-05-15",
days_per_game: 2.23077
},
{
tid: 1610612737,
name: "Hawks",
season: "2015-16",
games: 10,
days: 22,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-05-08",
days_per_game: 2.2
},
{
tid: 1610612738,
name: "Celtics",
season: "2015-16",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-04-28",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2016-17",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-04-24",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2016-17",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-04-23",
days_per_game: 2
},
{
tid: 1610612737,
name: "Hawks",
season: "2016-17",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-04-28",
days_per_game: 2
},
{
tid: 1610612738,
name: "Celtics",
season: "2016-17",
games: 18,
days: 39,
back2backs: 0,
one_days: 12,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-05-25",
days_per_game: 2.16667
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2016-17",
games: 18,
days: 58,
back2backs: 0,
one_days: 9,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 3,
first_date: "2017-04-15",
last_date: "2017-06-12",
days_per_game: 3.22222
},
{
tid: 1610612741,
name: "Bulls",
season: "2016-17",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-16",
last_date: "2017-04-28",
days_per_game: 2
},
{
tid: 1610612744,
name: "Warriors",
season: "2016-17",
games: 17,
days: 57,
back2backs: 0,
one_days: 7,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 3,
first_date: "2017-04-16",
last_date: "2017-06-12",
days_per_game: 3.35294
},
{
tid: 1610612745,
name: "Rockets",
season: "2016-17",
games: 11,
days: 25,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2017-04-16",
last_date: "2017-05-11",
days_per_game: 2.27273
},
{
tid: 1610612746,
name: "Clippers",
season: "2016-17",
games: 7,
days: 15,
back2backs: 0,
one_days: 3,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-04-30",
days_per_game: 2.14286
},
{
tid: 1610612749,
name: "Bucks",
season: "2016-17",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2017-04-15",
last_date: "2017-04-27",
days_per_game: 2
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2015-16",
games: 21,
days: 63,
back2backs: 0,
one_days: 11,
two_days: 6,
three_days: 0,
four_days: 0,
five_plus_days: 3,
first_date: "2016-04-17",
last_date: "2016-06-19",
days_per_game: 3
},
{
tid: 1610612755,
name: "76ers",
season: "2018-19",
games: 12,
days: 29,
back2backs: 0,
one_days: 5,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-05-12",
days_per_game: 2.41667
},
{
tid: 1610612738,
name: "Celtics",
season: "2019-20",
games: 17,
days: 41,
back2backs: 0,
one_days: 13,
two_days: 0,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-09-27",
days_per_game: 2.41176
},
{
tid: 1610612755,
name: "76ers",
season: "2019-20",
games: 4,
days: 6,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2020-08-17",
last_date: "2020-08-23",
days_per_game: 1.5
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2019-20",
games: 5,
days: 11,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-18",
last_date: "2020-08-29",
days_per_game: 2.2
},
{
tid: 1610612760,
name: "Thunder",
season: "2019-20",
games: 7,
days: 15,
back2backs: 0,
one_days: 5,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-18",
last_date: "2020-09-02",
days_per_game: 2.14286
},
{
tid: 1610612761,
name: "Raptors",
season: "2019-20",
games: 11,
days: 25,
back2backs: 0,
one_days: 9,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-09-11",
days_per_game: 2.27273
},
{
tid: 1610612762,
name: "Jazz",
season: "2019-20",
games: 7,
days: 15,
back2backs: 0,
one_days: 5,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-09-01",
days_per_game: 2.14286
},
{
tid: 1610612737,
name: "Hawks",
season: "2020-21",
games: 16,
days: 37,
back2backs: 0,
one_days: 9,
two_days: 5,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-29",
days_per_game: 2.3125
},
{
tid: 1610612738,
name: "Celtics",
season: "2020-21",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-01",
days_per_game: 2
},
{
tid: 1610612742,
name: "Mavericks",
season: "2020-21",
games: 7,
days: 15,
back2backs: 0,
one_days: 3,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-06",
days_per_game: 2.14286
},
{
tid: 1610612754,
name: "Pacers",
season: "2019-20",
games: 4,
days: 6,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2020-08-18",
last_date: "2020-08-24",
days_per_game: 1.5
},
{
tid: 1610612753,
name: "Magic",
season: "2019-20",
games: 5,
days: 11,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-18",
last_date: "2020-08-29",
days_per_game: 2.2
},
{
tid: 1610612742,
name: "Mavericks",
season: "2019-20",
games: 6,
days: 13,
back2backs: 0,
one_days: 4,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-08-30",
days_per_game: 2.16667
},
{
tid: 1610612743,
name: "Nuggets",
season: "2019-20",
games: 19,
days: 40,
back2backs: 0,
one_days: 16,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-09-26",
days_per_game: 2.10526
},
{
tid: 1610612745,
name: "Rockets",
season: "2019-20",
games: 12,
days: 25,
back2backs: 0,
one_days: 10,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-18",
last_date: "2020-09-12",
days_per_game: 2.08333
},
{
tid: 1610612746,
name: "Clippers",
season: "2019-20",
games: 13,
days: 29,
back2backs: 0,
one_days: 10,
two_days: 0,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-17",
last_date: "2020-09-15",
days_per_game: 2.23077
},
{
tid: 1610612747,
name: "Lakers",
season: "2019-20",
games: 21,
days: 54,
back2backs: 0,
one_days: 15,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 3,
first_date: "2020-08-18",
last_date: "2020-10-11",
days_per_game: 2.57143
},
{
tid: 1610612748,
name: "Heat",
season: "2019-20",
games: 21,
days: 54,
back2backs: 0,
one_days: 15,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2020-08-18",
last_date: "2020-10-11",
days_per_game: 2.57143
},
{
tid: 1610612749,
name: "Bucks",
season: "2019-20",
games: 10,
days: 21,
back2backs: 0,
one_days: 8,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2020-08-18",
last_date: "2020-09-08",
days_per_game: 2.1
},
{
tid: 1610612751,
name: "Nets",
season: "2019-20",
games: 4,
days: 6,
back2backs: 0,
one_days: 3,
two_days: 0,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2020-08-17",
last_date: "2020-08-23",
days_per_game: 1.5
},
{
tid: 1610612743,
name: "Nuggets",
season: "2020-21",
games: 10,
days: 22,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-13",
days_per_game: 2.2
},
{
tid: 1610612746,
name: "Clippers",
season: "2020-21",
games: 19,
days: 39,
back2backs: 0,
one_days: 15,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-30",
days_per_game: 2.05263
},
{
tid: 1610612747,
name: "Lakers",
season: "2020-21",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-03",
days_per_game: 1.83333
},
{
tid: 1610612738,
name: "Celtics",
season: "2018-19",
games: 9,
days: 24,
back2backs: 0,
one_days: 4,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2019-04-14",
last_date: "2019-05-08",
days_per_game: 2.66667
},
{
tid: 1610612743,
name: "Nuggets",
season: "2018-19",
games: 14,
days: 29,
back2backs: 0,
one_days: 10,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-05-12",
days_per_game: 2.07143
},
{
tid: 1610612744,
name: "Warriors",
season: "2018-19",
games: 22,
days: 61,
back2backs: 0,
one_days: 11,
two_days: 7,
three_days: 2,
four_days: 0,
five_plus_days: 1,
first_date: "2019-04-13",
last_date: "2019-06-13",
days_per_game: 2.77273
},
{
tid: 1610612745,
name: "Rockets",
season: "2018-19",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-14",
last_date: "2019-05-10",
days_per_game: 2.36364
},
{
tid: 1610612746,
name: "Clippers",
season: "2018-19",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-04-26",
days_per_game: 2.16667
},
{
tid: 1610612749,
name: "Bucks",
season: "2018-19",
games: 15,
days: 41,
back2backs: 0,
one_days: 8,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2019-04-14",
last_date: "2019-05-25",
days_per_game: 2.73333
},
{
tid: 1610612751,
name: "Nets",
season: "2018-19",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-04-23",
days_per_game: 2
},
{
tid: 1610612753,
name: "Magic",
season: "2018-19",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-13",
last_date: "2019-04-23",
days_per_game: 2
},
{
tid: 1610612764,
name: "Wizards",
season: "2020-21",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-02",
days_per_game: 2
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2020-21",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-02",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2020-21",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-05-29",
days_per_game: 1.75
},
{
tid: 1610612749,
name: "Bucks",
season: "2020-21",
games: 15,
days: 38,
back2backs: 0,
one_days: 9,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2021-05-22",
last_date: "2021-06-29",
days_per_game: 2.53333
},
{
tid: 1610612751,
name: "Nets",
season: "2020-21",
games: 12,
days: 28,
back2backs: 0,
one_days: 6,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-19",
days_per_game: 2.33333
},
{
tid: 1610612752,
name: "Knicks",
season: "2020-21",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-02",
days_per_game: 2
},
{
tid: 1610612755,
name: "76ers",
season: "2020-21",
games: 12,
days: 28,
back2backs: 0,
one_days: 6,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-23",
last_date: "2021-06-20",
days_per_game: 2.33333
},
{
tid: 1610612756,
name: "Suns",
season: "2020-21",
games: 16,
days: 38,
back2backs: 0,
one_days: 12,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2021-05-23",
last_date: "2021-06-30",
days_per_game: 2.375
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2020-21",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2021-05-22",
last_date: "2021-06-03",
days_per_game: 2
},
{
tid: 1610612762,
name: "Jazz",
season: "2020-21",
games: 11,
days: 26,
back2backs: 0,
one_days: 7,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2021-05-23",
last_date: "2021-06-18",
days_per_game: 2.36364
},
{
tid: 1610612754,
name: "Pacers",
season: "2018-19",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2019-04-14",
last_date: "2019-04-21",
days_per_game: 1.75
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2013-14",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-03",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2012-13",
games: 23,
days: 60,
back2backs: 0,
one_days: 15,
two_days: 5,
three_days: 0,
four_days: 0,
five_plus_days: 2,
first_date: "2013-04-21",
last_date: "2013-06-20",
days_per_game: 2.6087
},
{
tid: 1610612749,
name: "Bucks",
season: "2012-13",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-04-28",
days_per_game: 1.75
},
{
tid: 1610612751,
name: "Nets",
season: "2012-13",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-04",
days_per_game: 2
},
{
tid: 1610612752,
name: "Knicks",
season: "2012-13",
games: 12,
days: 28,
back2backs: 0,
one_days: 6,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-18",
days_per_game: 2.33333
},
{
tid: 1610612754,
name: "Pacers",
season: "2012-13",
games: 19,
days: 43,
back2backs: 0,
one_days: 13,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-06-03",
days_per_game: 2.26316
},
{
tid: 1610612759,
name: "Spurs",
season: "2012-13",
games: 21,
days: 60,
back2backs: 0,
one_days: 13,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2013-04-21",
last_date: "2013-06-20",
days_per_game: 2.85714
},
{
tid: 1610612760,
name: "Thunder",
season: "2012-13",
games: 11,
days: 24,
back2backs: 0,
one_days: 7,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-05-15",
days_per_game: 2.18182
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2012-13",
games: 15,
days: 37,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 3,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-27",
days_per_game: 2.46667
},
{
tid: 1610612747,
name: "Lakers",
season: "2012-13",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-04-28",
days_per_game: 1.75
},
{
tid: 1610612746,
name: "Clippers",
season: "2012-13",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-03",
days_per_game: 2.16667
},
{
tid: 1610612764,
name: "Wizards",
season: "2013-14",
games: 11,
days: 25,
back2backs: 0,
one_days: 8,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2014-04-20",
last_date: "2014-05-15",
days_per_game: 2.27273
},
{
tid: 1610612766,
name: "Hornets",
season: "2013-14",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-20",
last_date: "2014-04-28",
days_per_game: 2
},
{
tid: 1610612737,
name: "Hawks",
season: "2012-13",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-05-03",
days_per_game: 2
},
{
tid: 1610612738,
name: "Celtics",
season: "2012-13",
games: 6,
days: 13,
back2backs: 0,
one_days: 2,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-03",
days_per_game: 2.16667
},
{
tid: 1610612741,
name: "Bulls",
season: "2012-13",
games: 12,
days: 25,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-15",
days_per_game: 2.08333
},
{
tid: 1610612743,
name: "Nuggets",
season: "2012-13",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-02",
days_per_game: 2
},
{
tid: 1610612744,
name: "Warriors",
season: "2012-13",
games: 12,
days: 26,
back2backs: 0,
one_days: 8,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-20",
last_date: "2013-05-16",
days_per_game: 2.16667
},
{
tid: 1610612745,
name: "Rockets",
season: "2012-13",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2013-04-21",
last_date: "2013-05-03",
days_per_game: 2
},
{
tid: 1610612737,
name: "Hawks",
season: "2011-12",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-10",
days_per_game: 1.83333
},
{
tid: 1610612738,
name: "Celtics",
season: "2011-12",
games: 20,
days: 41,
back2backs: 0,
one_days: 16,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-06-09",
days_per_game: 2.05
},
{
tid: 1610612741,
name: "Bulls",
season: "2011-12",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-05-10",
days_per_game: 2
},
{
tid: 1610612738,
name: "Celtics",
season: "2010-11",
games: 9,
days: 24,
back2backs: 0,
one_days: 5,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2011-04-17",
last_date: "2011-05-11",
days_per_game: 2.66667
},
{
tid: 1610612740,
name: "Pelicans",
season: "2010-11",
games: 6,
days: 11,
back2backs: 0,
one_days: 4,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-04-28",
days_per_game: 1.83333
},
{
tid: 1610612741,
name: "Bulls",
season: "2010-11",
games: 16,
days: 40,
back2backs: 0,
one_days: 9,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2011-04-16",
last_date: "2011-05-26",
days_per_game: 2.5
},
{
tid: 1610612742,
name: "Mavericks",
season: "2010-11",
games: 21,
days: 57,
back2backs: 0,
one_days: 13,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2011-04-16",
last_date: "2011-06-12",
days_per_game: 2.71429
},
{
tid: 1610612743,
name: "Nuggets",
season: "2010-11",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-04-27",
days_per_game: 2
},
{
tid: 1610612747,
name: "Lakers",
season: "2010-11",
games: 10,
days: 21,
back2backs: 0,
one_days: 7,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-05-08",
days_per_game: 2.1
},
{
tid: 1610612748,
name: "Heat",
season: "2010-11",
games: 21,
days: 57,
back2backs: 0,
one_days: 9,
two_days: 6,
three_days: 4,
four_days: 0,
five_plus_days: 1,
first_date: "2011-04-16",
last_date: "2011-06-12",
days_per_game: 2.71429
},
{
tid: 1610612752,
name: "Knicks",
season: "2010-11",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-17",
last_date: "2011-04-24",
days_per_game: 1.75
},
{
tid: 1610612737,
name: "Hawks",
season: "2010-11",
games: 12,
days: 26,
back2backs: 0,
one_days: 8,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-16",
last_date: "2011-05-12",
days_per_game: 2.16667
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2011-12",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-13",
days_per_game: 2
},
{
tid: 1610612742,
name: "Mavericks",
season: "2011-12",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-05-05",
days_per_game: 1.75
},
{
tid: 1610612743,
name: "Nuggets",
season: "2011-12",
games: 7,
days: 13,
back2backs: 0,
one_days: 5,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-12",
days_per_game: 1.85714
},
{
tid: 1610612748,
name: "Heat",
season: "2011-12",
games: 23,
days: 54,
back2backs: 0,
one_days: 14,
two_days: 6,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-06-21",
days_per_game: 2.34783
},
{
tid: 1610612752,
name: "Knicks",
season: "2011-12",
games: 5,
days: 11,
back2backs: 0,
one_days: 1,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-05-09",
days_per_game: 2.2
},
{
tid: 1610612753,
name: "Magic",
season: "2011-12",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-05-08",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2011-12",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2012-04-28",
last_date: "2012-05-24",
days_per_game: 2.36364
},
{
tid: 1610612755,
name: "76ers",
season: "2011-12",
games: 13,
days: 28,
back2backs: 0,
one_days: 8,
two_days: 4,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-28",
last_date: "2012-05-26",
days_per_game: 2.15385
},
{
tid: 1610612762,
name: "Jazz",
season: "2011-12",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2012-04-29",
last_date: "2012-05-07",
days_per_game: 2
},
{
tid: 1610612753,
name: "Magic",
season: "2010-11",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2011-04-16",
last_date: "2011-04-28",
days_per_game: 2
},
{
tid: 1610612761,
name: "Raptors",
season: "2013-14",
games: 7,
days: 15,
back2backs: 0,
one_days: 3,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-04",
days_per_game: 2.14286
},
{
tid: 1610612742,
name: "Mavericks",
season: "2015-16",
games: 5,
days: 9,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-04-25",
days_per_game: 1.8
},
{
tid: 1610612765,
name: "Pistons",
season: "2015-16",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-04-24",
days_per_game: 1.75
},
{
tid: 1610612766,
name: "Hornets",
season: "2015-16",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-05-01",
days_per_game: 2
},
{
tid: 1610612737,
name: "Hawks",
season: "2014-15",
games: 16,
days: 37,
back2backs: 0,
one_days: 11,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2015-04-19",
last_date: "2015-05-26",
days_per_game: 2.3125
},
{
tid: 1610612738,
name: "Celtics",
season: "2014-15",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-04-26",
days_per_game: 1.75
},
{
tid: 1610612739,
name: "Cavaliers",
season: "2014-15",
games: 20,
days: 58,
back2backs: 0,
one_days: 13,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 3,
first_date: "2015-04-19",
last_date: "2015-06-16",
days_per_game: 2.9
},
{
tid: 1610612740,
name: "Pelicans",
season: "2014-15",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-18",
last_date: "2015-04-25",
days_per_game: 1.75
},
{
tid: 1610612741,
name: "Bulls",
season: "2014-15",
games: 12,
days: 26,
back2backs: 0,
one_days: 8,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-18",
last_date: "2015-05-14",
days_per_game: 2.16667
},
{
tid: 1610612742,
name: "Mavericks",
season: "2014-15",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-18",
last_date: "2015-04-28",
days_per_game: 2
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2015-16",
games: 4,
days: 7,
back2backs: 0,
one_days: 2,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-04-24",
days_per_game: 1.75
},
{
tid: 1610612761,
name: "Raptors",
season: "2015-16",
games: 20,
days: 41,
back2backs: 0,
one_days: 16,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-05-27",
days_per_game: 2.05
},
{
tid: 1610612744,
name: "Warriors",
season: "2015-16",
games: 24,
days: 64,
back2backs: 0,
one_days: 10,
two_days: 9,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2016-04-16",
last_date: "2016-06-19",
days_per_game: 2.66667
},
{
tid: 1610612745,
name: "Rockets",
season: "2015-16",
games: 5,
days: 11,
back2backs: 0,
one_days: 1,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-04-27",
days_per_game: 2.2
},
{
tid: 1610612746,
name: "Clippers",
season: "2015-16",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-04-29",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2015-16",
games: 14,
days: 28,
back2backs: 0,
one_days: 11,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-05-15",
days_per_game: 2
},
{
tid: 1610612754,
name: "Pacers",
season: "2015-16",
games: 7,
days: 15,
back2backs: 0,
one_days: 3,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-16",
last_date: "2016-05-01",
days_per_game: 2.14286
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2015-16",
games: 11,
days: 24,
back2backs: 0,
one_days: 7,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2016-04-17",
last_date: "2016-05-11",
days_per_game: 2.18182
},
{
tid: 1610612759,
name: "Spurs",
season: "2015-16",
games: 10,
days: 25,
back2backs: 0,
one_days: 6,
two_days: 1,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2016-04-17",
last_date: "2016-05-12",
days_per_game: 2.5
},
{
tid: 1610612760,
name: "Thunder",
season: "2015-16",
games: 18,
days: 44,
back2backs: 0,
one_days: 12,
two_days: 1,
three_days: 3,
four_days: 0,
five_plus_days: 1,
first_date: "2016-04-16",
last_date: "2016-05-30",
days_per_game: 2.44444
},
{
tid: 1610612744,
name: "Warriors",
season: "2014-15",
games: 21,
days: 59,
back2backs: 0,
one_days: 13,
two_days: 3,
three_days: 2,
four_days: 0,
five_plus_days: 2,
first_date: "2015-04-18",
last_date: "2015-06-16",
days_per_game: 2.80952
},
{
tid: 1610612745,
name: "Rockets",
season: "2014-15",
games: 17,
days: 39,
back2backs: 0,
one_days: 12,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 1,
first_date: "2015-04-18",
last_date: "2015-05-27",
days_per_game: 2.29412
},
{
tid: 1610612746,
name: "Clippers",
season: "2014-15",
games: 14,
days: 28,
back2backs: 0,
one_days: 11,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-05-17",
days_per_game: 2
},
{
tid: 1610612744,
name: "Warriors",
season: "2013-14",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-03",
days_per_game: 2
},
{
tid: 1610612745,
name: "Rockets",
season: "2013-14",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-20",
last_date: "2014-05-02",
days_per_game: 2
},
{
tid: 1610612746,
name: "Clippers",
season: "2013-14",
games: 13,
days: 26,
back2backs: 0,
one_days: 10,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-15",
days_per_game: 2
},
{
tid: 1610612748,
name: "Heat",
season: "2013-14",
games: 20,
days: 56,
back2backs: 0,
one_days: 11,
two_days: 4,
three_days: 2,
four_days: 0,
five_plus_days: 2,
first_date: "2014-04-20",
last_date: "2014-06-15",
days_per_game: 2.8
},
{
tid: 1610612751,
name: "Nets",
season: "2013-14",
games: 12,
days: 25,
back2backs: 0,
one_days: 8,
two_days: 3,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-14",
days_per_game: 2.08333
},
{
tid: 1610612754,
name: "Pacers",
season: "2013-14",
games: 19,
days: 41,
back2backs: 0,
one_days: 14,
two_days: 3,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-30",
days_per_game: 2.15789
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2013-14",
games: 11,
days: 24,
back2backs: 0,
one_days: 7,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-20",
last_date: "2014-05-14",
days_per_game: 2.18182
},
{
tid: 1610612759,
name: "Spurs",
season: "2013-14",
games: 23,
days: 56,
back2backs: 0,
one_days: 15,
two_days: 4,
three_days: 1,
four_days: 0,
five_plus_days: 2,
first_date: "2014-04-20",
last_date: "2014-06-15",
days_per_game: 2.43478
},
{
tid: 1610612742,
name: "Mavericks",
season: "2013-14",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-20",
last_date: "2014-05-04",
days_per_game: 2
},
{
tid: 1610612741,
name: "Bulls",
season: "2013-14",
games: 5,
days: 9,
back2backs: 0,
one_days: 3,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-20",
last_date: "2014-04-29",
days_per_game: 1.8
},
{
tid: 1610612749,
name: "Bucks",
season: "2014-15",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-18",
last_date: "2015-04-30",
days_per_game: 2
},
{
tid: 1610612751,
name: "Nets",
season: "2014-15",
games: 6,
days: 12,
back2backs: 0,
one_days: 3,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-05-01",
days_per_game: 2
},
{
tid: 1610612757,
name: "Trail Blazers",
season: "2014-15",
games: 5,
days: 10,
back2backs: 0,
one_days: 2,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-04-29",
days_per_game: 2
},
{
tid: 1610612759,
name: "Spurs",
season: "2014-15",
games: 7,
days: 13,
back2backs: 0,
one_days: 5,
two_days: 1,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-05-02",
days_per_game: 1.85714
},
{
tid: 1610612761,
name: "Raptors",
season: "2014-15",
games: 4,
days: 8,
back2backs: 0,
one_days: 1,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-18",
last_date: "2015-04-26",
days_per_game: 2
},
{
tid: 1610612763,
name: "Grizzlies",
season: "2014-15",
games: 11,
days: 26,
back2backs: 0,
one_days: 6,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2015-04-19",
last_date: "2015-05-15",
days_per_game: 2.36364
},
{
tid: 1610612764,
name: "Wizards",
season: "2014-15",
games: 10,
days: 27,
back2backs: 0,
one_days: 5,
two_days: 2,
three_days: 1,
four_days: 0,
five_plus_days: 1,
first_date: "2015-04-18",
last_date: "2015-05-15",
days_per_game: 2.7
},
{
tid: 1610612737,
name: "Hawks",
season: "2013-14",
games: 7,
days: 14,
back2backs: 0,
one_days: 4,
two_days: 2,
three_days: 0,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-03",
days_per_game: 2
},
{
tid: 1610612760,
name: "Thunder",
season: "2013-14",
games: 19,
days: 42,
back2backs: 0,
one_days: 14,
two_days: 2,
three_days: 2,
four_days: 0,
five_plus_days: 0,
first_date: "2014-04-19",
last_date: "2014-05-31",
days_per_game: 2.21053
}
];
Also see: Tab Triggers