Malloy Documentation
search

Malloy provides a way to compute percent of total through level of detail (ungrouped aggregates) functions. The functions all() and exclude() escape grouping in aggregate calculations. These functions are different than window functions as they operate inline with the query and can produce correct results even when the data hits a limit or is fanned out. Use cases below.

document
source: flights is duckdb.table('../data/flights.parquet') extend {
  join_one: carriers is duckdb.table('../data/carriers.parquet') on carrier = carriers.code
  measure: flight_count is count()
}

Totals

Using all(), you can easily produce an aggregate calculation that includes all the data, not just the data on the current row. Southwest + USAir = 126,434 flights. Notice that all_flights is the total of all the flights accessible in the query.

document
run: flights -> {
  group_by: carriers.nickname
  aggregate: 
    flight_count
    all_flights is all(flight_count)
    limit: 2
}
QUERY RESULTS
[
  {
    "nickname": "Southwest",
    "flight_count": 88751,
    "all_flights": 344827
  },
  {
    "nickname": "USAir",
    "flight_count": 37683,
    "all_flights": 344827
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set=1 THEN
      carriers_0."nickname"
      END as "nickname__1",
    CASE WHEN group_set=1 THEN
      COUNT(1)
      END as "flight_count__1",
    MAX((CASE WHEN group_set=0 THEN
      COUNT(1)
      END)) OVER () as "all_flights__1"
  FROM '../data/flights.parquet' as base
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON base."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,1,1)) as group_set  ) as group_set
  GROUP BY 1,2
)
SELECT
  "nickname__1" as "nickname",
  MAX(CASE WHEN group_set=1 THEN "flight_count__1" END) as "flight_count",
  MAX(CASE WHEN group_set=1 THEN "all_flights__1" END) as "all_flights"
FROM __stage0
WHERE group_set NOT IN (0)
GROUP BY 1
ORDER BY 2 desc NULLS LAST
LIMIT 2

Percent of Total

The all() function is useful for percent of total calculations. The # percent tags the result so it is displayed as a percentage.

document
run: flights -> {
  group_by: carriers.nickname
  aggregate: 
    flight_count
    # percent
    percent_of_flights is flight_count / all(flight_count)
    limit: 5
}
QUERY RESULTS
[
  {
    "nickname": "Southwest",
    "flight_count": 88751,
    "percent_of_flights": 0.2573783375431738
  },
  {
    "nickname": "USAir",
    "flight_count": 37683,
    "percent_of_flights": 0.10928088577750582
  },
  {
    "nickname": "American",
    "flight_count": 34577,
    "percent_of_flights": 0.10027347046489979
  },
  {
    "nickname": "Northwest",
    "flight_count": 33580,
    "percent_of_flights": 0.09738216554968143
  },
  {
    "nickname": "United",
    "flight_count": 32757,
    "percent_of_flights": 0.09499546149228454
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set=1 THEN
      carriers_0."nickname"
      END as "nickname__1",
    CASE WHEN group_set=1 THEN
      COUNT(1)
      END as "flight_count__1",
    (CASE WHEN group_set=1 THEN
      COUNT(1)
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT(1)
      END)) OVER () as "percent_of_flights__1"
  FROM '../data/flights.parquet' as base
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON base."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,1,1)) as group_set  ) as group_set
  GROUP BY 1,2
)
SELECT
  "nickname__1" as "nickname",
  MAX(CASE WHEN group_set=1 THEN "flight_count__1" END) as "flight_count",
  MAX(CASE WHEN group_set=1 THEN "percent_of_flights__1" END) as "percent_of_flights"
FROM __stage0
WHERE group_set NOT IN (0)
GROUP BY 1
ORDER BY 2 desc NULLS LAST
LIMIT 5

All of a particular grouping

The all() function can optionally take the names of output columns to show all of a particular value. You can see that all of Southwests fights is still 88,751. The output column name for carriers.nickname is nickname so we use that in the calculation. The exclude() function lets you eliminate a dimension from grouping.

document
run: flights -> {
  group_by:
    carriers.nickname
    destination
    origin
  aggregate: 
    flight_count
    flights_by_this_carrier is all(flight_count, nickname)
    flights_to_this_destination is all(flight_count, destination)
    flights_by_this_origin is all(flight_count, origin)
    flights_on_this_route is exclude(flight_count, nickname)
  limit: 20
}
QUERY RESULTS
[
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 1903,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 7625,
    "flights_by_this_origin": 6678,
    "flights_on_this_route": 2143
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 1901,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 6695,
    "flights_by_this_origin": 7623,
    "flights_on_this_route": 2123
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 1033,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 5799,
    "flights_by_this_origin": 7623,
    "flights_on_this_route": 1214
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 1031,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 7625,
    "flights_by_this_origin": 5797,
    "flights_on_this_route": 1201
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 821,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 5082,
    "flights_by_this_origin": 11077,
    "flights_on_this_route": 868
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PFN",
    "origin": "ATL",
    "flight_count": 787,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 789,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 787
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PFN",
    "flight_count": 776,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 778,
    "flights_on_this_route": 776
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 745,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11074,
    "flights_by_this_origin": 5076,
    "flights_on_this_route": 792
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AGS",
    "flight_count": 716,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 756,
    "flights_on_this_route": 717
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AGS",
    "origin": "ATL",
    "flight_count": 696,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 737,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 697
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHA",
    "flight_count": 670,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 697,
    "flights_on_this_route": 670
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "ATL",
    "flight_count": 670,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 696,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 670
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 661,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11074,
    "flights_by_this_origin": 12476,
    "flights_on_this_route": 819
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AVL",
    "origin": "ATL",
    "flight_count": 657,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 741,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 657
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CSG",
    "flight_count": 654,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 654,
    "flights_on_this_route": 654
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CSG",
    "origin": "ATL",
    "flight_count": 651,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 651,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 651
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AVL",
    "flight_count": 643,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 727,
    "flights_on_this_route": 643
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 641,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 12477,
    "flights_by_this_origin": 11096,
    "flights_on_this_route": 777
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 637,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11092,
    "flights_by_this_origin": 12476,
    "flights_on_this_route": 788
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 556,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11092,
    "flights_by_this_origin": 11077,
    "flights_on_this_route": 1073
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END as "nickname__5",
    CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END as "destination__5",
    CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END as "origin__5",
    CASE WHEN group_set=5 THEN
      COUNT(1)
      END as "flight_count__5",
    MAX((CASE WHEN group_set=1 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END) as "flights_by_this_carrier__5",
    MAX((CASE WHEN group_set=2 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END) as "flights_to_this_destination__5",
    MAX((CASE WHEN group_set=3 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END) as "flights_by_this_origin__5",
    MAX((CASE WHEN group_set=4 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END, CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END) as "flights_on_this_route__5"
  FROM '../data/flights.parquet' as base
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON base."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,5,1)) as group_set  ) as group_set
  GROUP BY 1,2,3,4
)
SELECT
  "nickname__5" as "nickname",
  "destination__5" as "destination",
  "origin__5" as "origin",
  MAX(CASE WHEN group_set=5 THEN "flight_count__5" END) as "flight_count",
  MAX(CASE WHEN group_set=5 THEN "flights_by_this_carrier__5" END) as "flights_by_this_carrier",
  MAX(CASE WHEN group_set=5 THEN "flights_to_this_destination__5" END) as "flights_to_this_destination",
  MAX(CASE WHEN group_set=5 THEN "flights_by_this_origin__5" END) as "flights_by_this_origin",
  MAX(CASE WHEN group_set=5 THEN "flights_on_this_route__5" END) as "flights_on_this_route"
FROM __stage0
WHERE group_set NOT IN (0,1,2,3,4)
GROUP BY 1,2,3
ORDER BY 4 desc NULLS LAST
LIMIT 20

As Percentages

Displaying results as percentages is often gives clues as to how numbers relate. Is this number a large or small percentage of the group? Level of detail calculations are great for this. In Malloy, identifiers enclosed in back-ticks can have spaces.

document
run: flights -> {
  group_by:
    carriers.nickname
    destination
    origin
  aggregate: 
    flight_count
    # percent
    `carrier as a percent of all flights` is all(flight_count, nickname) / all(flight_count)
    # percent
    `destination as a percent of all flights` is all(flight_count, destination) / all(flight_count)
    # percent
    `origin as a percent of all flights` is all(flight_count, origin) / all(flight_count)
    # percent
    `carriers as a percentage of route` is flight_count / exclude(flight_count, nickname)
}
QUERY RESULTS
[
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 1903,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8880074661689221
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 1901,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8954309938765898
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 1033,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8509060955518946
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 1031,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.858451290591174
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 821,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.945852534562212
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PFN",
    "origin": "ATL",
    "flight_count": 787,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PFN",
    "flight_count": 776,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0022562038355465205,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 745,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9406565656565656
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AGS",
    "flight_count": 716,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 0.99860529986053
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AGS",
    "origin": "ATL",
    "flight_count": 696,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9985652797704447
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHA",
    "flight_count": 670,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "ATL",
    "flight_count": 670,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 661,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8070818070818071
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AVL",
    "origin": "ATL",
    "flight_count": 657,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CSG",
    "flight_count": 654,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018966032242254812,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CSG",
    "origin": "ATL",
    "flight_count": 651,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.001887903209435456,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AVL",
    "flight_count": 643,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 641,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.824967824967825
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 637,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8083756345177665
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 556,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5181733457595527
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 552,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7489823609226595
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MSY",
    "flight_count": 536,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TRI",
    "origin": "ATL",
    "flight_count": 534,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9981308411214953
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TRI",
    "flight_count": 534,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.996268656716418
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 516,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.4966313763233879
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MCI",
    "flight_count": 513,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "STL",
    "origin": "ATL",
    "flight_count": 513,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9884393063583815
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "STL",
    "flight_count": 510,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9883720930232558
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MDW",
    "flight_count": 504,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MGM",
    "origin": "ATL",
    "flight_count": 504,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.001461602484724224,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MGM",
    "flight_count": 500,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014500024650041905,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "PHX",
    "flight_count": 498,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8783068783068783
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ACT",
    "flight_count": 494,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0014326024354241402,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GNV",
    "origin": "ATL",
    "flight_count": 493,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0014297024304941318,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ACT",
    "origin": "DFW",
    "flight_count": 492,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0014268024255641235,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSP",
    "flight_count": 491,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "TYR",
    "origin": "DFW",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013978023762640397,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DFW",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8500881834215167
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SAN",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TYR",
    "flight_count": 480,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013920023664040228,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "OAK",
    "flight_count": 479,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 471,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9711340206185567
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 471,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9612244897959183
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SAN",
    "flight_count": 470,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.9251968503937008
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GNV",
    "flight_count": 469,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ORD",
    "flight_count": 462,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8619402985074627
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DTW",
    "flight_count": 461,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SPS",
    "flight_count": 457,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013253022530138301,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SPS",
    "origin": "DFW",
    "flight_count": 456,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013224022480838218,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "PHX",
    "flight_count": 453,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8191681735985533
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "LAS",
    "flight_count": 451,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9111111111111111
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SEA",
    "flight_count": 449,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CLL",
    "flight_count": 448,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013166022382238049,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 446,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.901010101010101
  },
  {
    "nickname": "American Eagle",
    "destination": "CLL",
    "origin": "DFW",
    "flight_count": 445,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013079022234337798,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "HOU",
    "flight_count": 442,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "BWI",
    "flight_count": 441,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9910112359550561
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "MSP",
    "flight_count": 435,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "OAK",
    "flight_count": 433,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LAW",
    "origin": "DFW",
    "flight_count": 429,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012441021149735955,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SAN",
    "flight_count": 428,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "SEA",
    "flight_count": 424,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7723132969034608
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LAW",
    "flight_count": 423,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012267020853935452,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BOS",
    "flight_count": 423,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9155844155844156
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SJC",
    "flight_count": 419,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8821052631578947
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LAX",
    "flight_count": 418,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7916666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LAX",
    "flight_count": 417,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ORD",
    "flight_count": 416,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7074829931972789
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "STL",
    "flight_count": 413,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "LAS",
    "flight_count": 413,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9672131147540983
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MSP",
    "flight_count": 412,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "ONT",
    "flight_count": 412,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "ONT",
    "flight_count": 411,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ABQ",
    "flight_count": 411,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.6586538461538461
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "PHL",
    "flight_count": 409,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.910913140311804
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PVD",
    "flight_count": 409,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.9903147699757869
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7246891651865008
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "ORD",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7351351351351352
  },
  {
    "nickname": "United",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7404718693284936
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DEN",
    "flight_count": 407,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7065972222222222
  },
  {
    "nickname": "Delta",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 406,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8136272545090181
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "OAK",
    "flight_count": 405,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 403,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.7964426877470355
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ISP",
    "flight_count": 401,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SAN",
    "flight_count": 400,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.8403361344537815
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MCO",
    "flight_count": 400,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SMF",
    "flight_count": 396,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LGA",
    "flight_count": 392,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6125
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IAD",
    "flight_count": 391,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "BWI",
    "flight_count": 387,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MYR",
    "flight_count": 387,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "DTW",
    "flight_count": 386,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9974160206718347
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "VPS",
    "flight_count": 385,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 0.9974093264248705
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BUR",
    "flight_count": 384,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.9896907216494846
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LAX",
    "flight_count": 382,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7304015296367112
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OAK",
    "flight_count": 382,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9052132701421801
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BNA",
    "flight_count": 381,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "SMF",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "HOU",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ONT",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.7739307535641547
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MYR",
    "origin": "ATL",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "ORD",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6161449752883031
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "LAX",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9077669902912622
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "LAS",
    "flight_count": 373,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9893899204244032
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "VPS",
    "origin": "ATL",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9973190348525469
  },
  {
    "nickname": "American Eagle",
    "destination": "ILE",
    "origin": "DFW",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012122020607435032,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8920863309352518
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MDW",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "TPA",
    "flight_count": 371,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9919786096256684
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ILE",
    "flight_count": 370,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.891566265060241
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "RNO",
    "flight_count": 370,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.9390862944162437
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BUR",
    "flight_count": 367,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SAN",
    "flight_count": 366,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.8652482269503546
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "DEN",
    "flight_count": 363,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SHV",
    "origin": "DFW",
    "flight_count": 360,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.997229916897507
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "DAL",
    "flight_count": 359,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DEN",
    "flight_count": 357,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9394736842105263
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SHV",
    "flight_count": 356,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 0.9971988795518207
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TPA",
    "flight_count": 355,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "ATL",
    "flight_count": 354,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MHT",
    "flight_count": 351,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SMF",
    "flight_count": 345,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.9031413612565445
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "BWI",
    "flight_count": 343,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LAS",
    "flight_count": 343,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8285024154589372
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAS",
    "flight_count": 339,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.904
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "DFW",
    "flight_count": 337,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MSP",
    "flight_count": 335,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9103260869565217
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "DEN",
    "flight_count": 335,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8459595959595959
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 332,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7848699763593381
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "AUS",
    "flight_count": 330,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LAX",
    "flight_count": 330,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5365853658536586
  },
  {
    "nickname": "Delta",
    "destination": "MIA",
    "origin": "ATL",
    "flight_count": 327,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7975609756097561
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "MSP",
    "flight_count": 325,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9103641456582633
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BWI",
    "flight_count": 325,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "DHN",
    "flight_count": 324,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0009396015973227155,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "FLL",
    "flight_count": 324,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9969230769230769
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DHN",
    "origin": "ATL",
    "flight_count": 323,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0009367015923927071,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ONT",
    "flight_count": 323,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.938953488372093
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "PHX",
    "flight_count": 320,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.600375234521576
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LAS",
    "flight_count": 317,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9188405797101449
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SJC",
    "flight_count": 315,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8677685950413223
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ORD",
    "flight_count": 315,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8015267175572519
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 314,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7302325581395349
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 306,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7481662591687042
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SAT",
    "flight_count": 304,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9934640522875817
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAX",
    "flight_count": 304,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "JAX",
    "flight_count": 302,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "DFW",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9966666666666667
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "SFO",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6937354988399071
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BOS",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "ATL",
    "flight_count": 298,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ABI",
    "origin": "DFW",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008642014691424975,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SAN",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "LAS",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7122302158273381
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "DTW",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9456869009584664
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "BWI",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ABI",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0008613014642124892,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "DTW",
    "flight_count": 295,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 295,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.921875
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RSW",
    "flight_count": 288,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MSP",
    "flight_count": 287,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "ATL",
    "flight_count": 287,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "IAD",
    "flight_count": 286,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5315985130111525
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 285,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6900726392251816
  },
  {
    "nickname": "American",
    "destination": "IAD",
    "origin": "LAX",
    "flight_count": 285,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.4634146341463415
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BDL",
    "flight_count": 283,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MDW",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SFO",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7790055248618785
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "MSP",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PHX",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7871148459383753
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SFO",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IAD",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PIT",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8949044585987261
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ATL",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "DTW",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MSP",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "SMF",
    "flight_count": 279,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MCO",
    "flight_count": 279,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "PHL",
    "flight_count": 278,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7554347826086957
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8195266272189349
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PHL",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9111842105263158
  },
  {
    "nickname": "Alaska",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6579572446555819
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "DTW",
    "flight_count": 276,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DFW",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6207674943566591
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DCA",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LGA",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.975177304964539
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "LAS",
    "flight_count": 274,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7172774869109948
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 274,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.845679012345679
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LGA",
    "flight_count": 273,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "DTW",
    "flight_count": 272,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.7727272727272727
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "OAK",
    "flight_count": 271,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.5741525423728814
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "LAS",
    "flight_count": 270,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8940397350993378
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BOS",
    "flight_count": 269,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SMF",
    "flight_count": 269,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.8226299694189603
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "HOU",
    "flight_count": 268,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "ATL",
    "flight_count": 268,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5995525727069351
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MCO",
    "flight_count": 267,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7063492063492064
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MCO",
    "flight_count": 264,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MSP",
    "flight_count": 263,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.7874251497005988
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MSP",
    "flight_count": 263,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 262,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7024128686327078
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BWI",
    "flight_count": 262,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "IAD",
    "flight_count": 261,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7092391304347826
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CLT",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "CLT",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.966542750929368
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BUR",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.7282913165266106
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "BUR",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GGG",
    "origin": "DFW",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007482012719421624,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GGG",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007482012719421624,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "ABQ",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "ORD",
    "flight_count": 257,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.747093023255814
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MCO",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9846153846153847
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "FLL",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BUF",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SLC",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.7687687687687688
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "LAS",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8152866242038217
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RDU",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.23765144454799628
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "BWI",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CAE",
    "origin": "ATL",
    "flight_count": 254,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9883268482490273
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SEA",
    "flight_count": 253,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.55119825708061
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8289473684210527
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "IAD",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4684014869888476
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IAH",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7544910179640718
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SAN",
    "flight_count": 251,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.5363247863247863
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "ORD",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5399568034557235
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.24061597690086622
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "HOU",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SMF",
    "flight_count": 249,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.5198329853862212
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "TPA",
    "flight_count": 249,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "CLT",
    "flight_count": 248,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LGA",
    "flight_count": 248,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3875
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7037037037037037
  },
  {
    "nickname": "Alaska",
    "destination": "SAN",
    "origin": "SEA",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.9724409448818898
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "CLT",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ORD",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 246,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6373056994818653
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "DTW",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9607843137254902
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6940509915014165
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PIT",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "DFW",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MSP",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IAH",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7205882352941176
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7507692307692307
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DCA",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "GEG",
    "origin": "SEA",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5495495495495496
  },
  {
    "nickname": "Northwest",
    "destination": "MHT",
    "origin": "DTW",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BWI",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9958847736625515
  },
  {
    "nickname": "Delta",
    "destination": "TLH",
    "origin": "ATL",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9490196078431372
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DEN",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.5182795698924731
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MHT",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "DFW",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8060200668896321
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ATL",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.11199253383107793
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.6521739130434783
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "SJC",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GPT",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.9958333333333333
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.9446640316205533
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SEA",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9484126984126984
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LGA",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GPT",
    "origin": "ATL",
    "flight_count": 238,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0008033013656123215,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.99581589958159
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "PHX",
    "flight_count": 237,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7053571428571429
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 237,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5969773299748111
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MDW",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8939393939393939
  },
  {
    "nickname": "Alaska",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6178010471204188
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "FLL",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.7151515151515152
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7687296416938111
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "ONT",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "FLL",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "JFK",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7298136645962733
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SFO",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MKE",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "GEG",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.5587529976019184
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "DFW",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9137254901960784
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "ORD",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.38385502471169686
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "ORD",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.535632183908046
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SAN",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "SJC",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LAS",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8854961832061069
  },
  {
    "nickname": "America West",
    "destination": "DEN",
    "origin": "PHX",
    "flight_count": 231,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5261958997722096
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ALB",
    "flight_count": 230,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SMF",
    "flight_count": 230,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.4801670146137787
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6074270557029178
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LGA",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9786324786324786
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6897590361445783
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "BWI",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BOS",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9783549783549783
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PHX",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DCA",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7839721254355401
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.7305194805194806
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "STL",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "PHX",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5022321428571429
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "DEN",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.4817204301075269
  },
  {
    "nickname": "Delta",
    "destination": "MDW",
    "origin": "ATL",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SJT",
    "origin": "DFW",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "LAS",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.986784140969163
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LGA",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MDW",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6757575757575758
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "PHX",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.49776785714285715
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SJT",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006467010993918689,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "CLT",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7184466019417476
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.10456900612341027
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DCA",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9288702928870293
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ELP",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.694006309148265
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MYR",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BOS",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5352798053527981
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "ORD",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7508532423208191
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "DTW",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "IAD",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PDX",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.7041800643086816
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAS",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.6759259259259259
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "PHL",
    "flight_count": 218,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8074074074074075
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "HOU",
    "flight_count": 218,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SAN",
    "flight_count": 217,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.4636752136752137
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MCI",
    "flight_count": 216,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "SAT",
    "flight_count": 216,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5752688172043011
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MCO",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.981651376146789
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ATL",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8734693877551021
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MCI",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.981651376146789
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "TPA",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7508771929824561
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "ORD",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7133333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BNA",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RIC",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "ORD",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.46004319654427644
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "DTW",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TUS",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6513761467889908
  },
  {
    "nickname": "America West",
    "destination": "ABQ",
    "origin": "PHX",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.399624765478424
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ABQ",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.34134615384615385
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "MDW",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9383259911894273
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BNA",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7464788732394366
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "FLL",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5792349726775956
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SEA",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5223880597014925
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LAS",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.995260663507109
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SMF",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.9767441860465116
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "SAT",
    "flight_count": 209,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MHT",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.7908745247148289
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PHX",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47380410022779046
  },
  {
    "nickname": "American",
    "destination": "TUS",
    "origin": "DFW",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PHX",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "DCA",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.985781990521327
  },
  {
    "nickname": "Alaska",
    "destination": "OAK",
    "origin": "SEA",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.44880174291938996
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.71280276816609
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "BUR",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "VLD",
    "origin": "ATL",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "PHL",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8728813559322034
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8046875
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "LAX",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BHM",
    "flight_count": 205,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MKE",
    "flight_count": 205,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "MCO",
    "flight_count": 204,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PHL",
    "flight_count": 204,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DCA",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "DEN",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PDX",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "MSP",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.8087649402390438
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PDX",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.8285714285714286
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "DTW",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9620853080568721
  },
  {
    "nickname": "American Eagle",
    "destination": "FSM",
    "origin": "DFW",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000585800995861693,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "FSM",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000585800995861693,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "ORD",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.46436781609195404
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "ATL",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "MSP",
    "flight_count": 201,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "OAK",
    "flight_count": 201,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4258474576271186
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "VLD",
    "flight_count": 200,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005800009860016763,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "SEA",
    "flight_count": 200,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.45045045045045046
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "RDU",
    "flight_count": 199,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LAX",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BWI",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SLC",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "HOU",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.8048780487804879
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "DFW",
    "flight_count": 197,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9800995024875622
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BWI",
    "flight_count": 197,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9800995024875622
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MDW",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6877192982456141
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SJC",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "CLT",
    "flight_count": 195,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SJC",
    "flight_count": 195,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8369098712446352
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "STL",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9797979797979798
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SEA",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MCI",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SFO",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.754863813229572
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "CLT",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5722713864306784
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DFW",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5693215339233039
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "RDU",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TXK",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006003010205117349,
    "carriers as a percentage of route": 0.9323671497584541
  },
  {
    "nickname": "American Eagle",
    "destination": "TXK",
    "origin": "DFW",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9414634146341463
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "DFW",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7619047619047619
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "DAL",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SEA",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.47761194029850745
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MSP",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "ORD",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5162162162162162
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LGA",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MCO",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8059071729957806
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BOS",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.46472019464720193
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 190,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5149051490514905
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "BWI",
    "flight_count": 190,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "BNA",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CLT",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "DEN",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MCI",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.9690721649484536
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ELP",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.6714285714285714
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "RNO",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RIC",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CHS",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ATL",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "MDW",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "AUS",
    "flight_count": 186,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.7622950819672131
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SLC",
    "flight_count": 186,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6992481203007519
  },
  {
    "nickname": "Northwest",
    "destination": "BWI",
    "origin": "DTW",
    "flight_count": 185,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 185,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6583629893238434
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "MDW",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "GEG",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.4412470023980815
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "MDW",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.989247311827957
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "OAK",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.8070175438596491
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "DEN",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "ATL",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6456140350877193
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "JAX",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MEM",
    "flight_count": 183,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LGA",
    "flight_count": 183,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9891891891891892
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MDW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8625592417061612
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BOS",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ELP",
    "origin": "DFW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MSP",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "DFW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5723270440251572
  },
  {
    "nickname": "Northwest",
    "destination": "PVD",
    "origin": "DTW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6605839416058394
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5973597359735974
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ATL",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8660287081339713
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.14909390444810544
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PBI",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.6498194945848376
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CLT",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RDU",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.967741935483871
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "EWR",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8325581395348837
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "HOU",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "CMH",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "OMA",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "ORD",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4837837837837838
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PVD",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ATL",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4004474272930649
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "ATL",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9728260869565217
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MDW",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "TUS",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5668789808917197
  },
  {
    "nickname": "Northwest",
    "destination": "SLC",
    "origin": "MSP",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.994413407821229
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6819923371647509
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PIT",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "PHX",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.69140625
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DFW",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5412844036697247
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "ORD",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8045454545454546
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "ATL",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.45012787723785164
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "PHL",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8073394495412844
  },
  {
    "nickname": "Northwest",
    "destination": "MDW",
    "origin": "MSP",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5191740412979351
  },
  {
    "nickname": "America West",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47696476964769646
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "PHX",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6692015209125475
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "GRR",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5176470588235295
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "PDX",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SLC",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9887005649717514
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "HPN",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ORF",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BWI",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SNA",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.5858585858585859
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PHL",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "TPA",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9886363636363636
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "ORD",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9664804469273743
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MDW",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.5164179104477612
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "BWI",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SNA",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PIT",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "ORD",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2925170068027211
  },
  {
    "nickname": "Continental Express",
    "destination": "HPN",
    "origin": "CLE",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.35330578512396693
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SNA",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.9661016949152542
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "TPA",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SGF",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LGA",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SGF",
    "origin": "DFW",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ONT",
    "origin": "SEA",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.14154870940882597
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ABQ",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9941520467836257
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MSY",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.7161016949152542
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MEM",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "DFW",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9825581395348837
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "RNO",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SJC",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MCI",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.5059880239520959
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DEN",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.2934027777777778
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "PHX",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5504885993485342
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "DFW",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9882352941176471
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "DFW",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3792325056433409
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.49411764705882355
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MSY",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TPA",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9653179190751445
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "DFW",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9027027027027027
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.42710997442455245
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RDU",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.7695852534562212
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "TPA",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OAK",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.5738831615120275
  },
  {
    "nickname": "America West",
    "destination": "MCI",
    "origin": "PHX",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.538961038961039
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "LAX",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.907103825136612
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "DTW",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DFW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5749128919860628
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.717391304347826
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "DTW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.5851063829787234
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAV",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 0.9939759036144579
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MEM",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "DTW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MCI",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.4940119760479042
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "RNO",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "CLT",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAV",
    "origin": "ATL",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9939393939393939
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ORD",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9590643274853801
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PHX",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8324873096446701
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MSP",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.4808259587020649
  },
  {
    "nickname": "Continental Express",
    "destination": "ABE",
    "origin": "CLE",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5780141843971631
  },
  {
    "nickname": "America West",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15688161693936478
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SNA",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.6468253968253969
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ABQ",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "DFW",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.43466666666666665
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "CLT",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MEM",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "STL",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9476744186046512
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ABE",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MSP",
    "origin": "MDW",
    "flight_count": 162,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.4835820895522388
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "LGA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7252252252252253
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DCA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "PHL",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "IAD",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.9938271604938271
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "OAK",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "CVG",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "PHL",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "DFW",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8563829787234043
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SEA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9526627218934911
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IAD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "ORD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "EWR",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9195402298850575
  },
  {
    "nickname": "Continental Express",
    "destination": "LGA",
    "origin": "CLE",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7582938388625592
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3305785123966942
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "PHL",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BOS",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9937888198757764
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "BNA",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.8080808080808081
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SNA",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "DEN",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9520958083832335
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SDF",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RDU",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "ORD",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9875776397515528
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2157394843962008
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "STL",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9408284023668639
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "CLT",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5463917525773195
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BWI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SLC",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BWI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "DFW",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9239766081871345
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MCI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.558303886925795
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "DFW",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.34347826086956523
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MSY",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5432525951557093
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.6038461538461538
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "EWR",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8579234972677595
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SJU",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.9936708860759493
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SDF",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MEM",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5340136054421769
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RIC",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "TPA",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MSY",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DFW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ORD",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7684729064039408
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9341317365269461
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SAN",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LGA",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6995515695067265
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.8041237113402062
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "DFW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DAY",
    "flight_count": 155,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "BUR",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GRK",
    "origin": "DFW",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00046980079866135773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RIC",
    "origin": "ATL",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.7439613526570048
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LAX",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "PHL",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5273972602739726
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7031963470319634
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ISP",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MIA",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9503105590062112
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GRK",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00046690079373134933,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.33260869565217394
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.498371335504886
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.31611570247933884
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "OAK",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MCO",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LAS",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "DTW",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.8216216216216217
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "LAX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8118279569892473
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.9320987654320988
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "JAX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "ATL",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9151515151515152
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MCO",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8771929824561403
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "DEN",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "PHL",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7109004739336493
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "DFW",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.45871559633027525
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "SFO",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SMF",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.5415162454873647
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "BWI",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "ATL",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.974025974025974
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MDW",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "CLT",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.7487437185929648
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "DCA",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "LAS",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "LGB",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "AUS",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MCO",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6962616822429907
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.3239130434782609
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "MDW",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9192546583850931
  },
  {
    "nickname": "United",
    "destination": "RNO",
    "origin": "DEN",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "PHX",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8268156424581006
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6981132075471698
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BOS",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9079754601226994
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BNA",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "SMF",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.6805555555555556
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "ORD",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2648648648648649
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5464684014869888
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "DEN",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "DEN",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "HOU",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "DAL",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CLT",
    "origin": "DFW",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4306784660766962
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PVD",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.73
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9012345679012346
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "CLT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "PHL",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CLT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.4277286135693215
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "ONT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BOS",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "GEG",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "JFK",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "MIA",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "JFK",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "IAD",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7461139896373057
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3844086021505376
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SEA",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "DAL",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "DEN",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "DTW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9407894736842105
  },
  {
    "nickname": "American Eagle",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5958333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "DTW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9050632911392406
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "PDX",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ONT",
    "origin": "DFW",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9403973509933775
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PHX",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.461038961038961
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ONT",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LAX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2695984703632887
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "PHX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6130434782608696
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "OAK",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PHX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5280898876404494
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ABE",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.9591836734693877
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7663043478260869
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "AUS",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.6130434782608696
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ONT",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MDT",
    "origin": "ATL",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9038461538461539
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LAX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.592436974789916
  },
  {
    "nickname": "Continental Express",
    "destination": "MDT",
    "origin": "CLE",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "DEN",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.958904109589041
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "MSP",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "DEN",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "BUR",
    "origin": "SEA",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4778156996587031
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BNA",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "DTW",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DTW",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.3787465940054496
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SEA",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5225563909774437
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "AUS",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9391891891891891
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8323353293413174
  },
  {
    "nickname": "Alaska",
    "destination": "SAN",
    "origin": "PDX",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MDT",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "ORD",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9788732394366197
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6813725490196079
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IND",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TPA",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MDW",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8518518518518519
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PHL",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.4726027397260274
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PBI",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.8263473053892215
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BDL",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.5348837209302325
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "CLE",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "CLT",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.6764705882352942
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "HOU",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "PHX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.4495114006514658
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3770491803278688
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LAX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8961038961038961
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4524590163934426
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MSY",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "JFK",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8263473053892215
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "TPA",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SMF",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.965034965034965
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "MDW",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "MSP",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MCO",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7527472527472527
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "BNA",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.845679012345679
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MIA",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9856115107913669
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "CLT",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BDL",
    "origin": "DTW",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "PHL",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8192771084337349
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "DEN",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "BNA",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.7513812154696132
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7431693989071039
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LAS",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1267474370922647
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "TPA",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17503217503217502
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "DTW",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "OMA",
    "origin": "PHX",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6852791878172588
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "LAS",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9246575342465754
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MSY",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BNA",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "BWI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MCI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MCI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "RNO",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.5532786885245902
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "BWI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "DCA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "OMA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.6036036036036037
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5929203539823009
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "JAN",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4364820846905538
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5982142857142857
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SFO",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAV",
    "origin": "CLT",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SMF",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SAV",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.7613636363636364
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "ORD",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6871794871794872
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SAN",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MSY",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "DTW",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BDL",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SAN",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.7556818181818182
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PVD",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BOS",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9637681159420289
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "DFW",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9432624113475178
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "DCA",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BWI",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.5018867924528302
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BNA",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BWI",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ANC",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "American",
    "destination": "IAD",
    "origin": "DFW",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9850746268656716
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "CLE",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8198757763975155
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SMF",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "PHL",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.559322033898305
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OKC",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IND",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9361702127659575
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BDL",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.8098159509202454
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IAD",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SFO",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3062645011600928
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BNA",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "CLT",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.7751479289940828
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "GSO",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.15873015873015872
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "FLL",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9923664122137404
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "MSP",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "ATL",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MSP",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5512820512820513
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SJC",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "PHL",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7543859649122807
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "MDT",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "ORD",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9923076923076923
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "LAS",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "TPA",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9922480620155039
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "EWR",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9624060150375939
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OAK",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "IND",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DCA",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "BWI",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.920863309352518
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6614583333333334
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PHX",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SMF",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.4584837545126354
  },
  {
    "nickname": "Northwest",
    "destination": "SJC",
    "origin": "MSP",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BOS",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SJU",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "RNO",
    "origin": "SEA",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.503968253968254
  },
  {
    "nickname": "Delta",
    "destination": "SJU",
    "origin": "ATL",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SMF",
    "origin": "SEA",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4774436090225564
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "CLT",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MCI",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "ORD",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5121951219512195
  },
  {
    "nickname": "American",
    "destination": "OAK",
    "origin": "DFW",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "IND",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9064748201438849
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "IAD",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.9197080291970803
  },
  {
    "nickname": "America West",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.4359861591695502
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "BWI",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "OAK",
    "origin": "PHX",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47191011235955055
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SEA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.22768670309653916
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "FLL",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PVD",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "RNO",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SEA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.49603174603174605
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PDX",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.9541984732824428
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PVD",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.6410256410256411
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "TPA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9328358208955224
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MCI",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DEN",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7045454545454546
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "MEM",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "PHL",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RSW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "DFW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "OAK",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4261168384879725
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7294117647058823
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MCI",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MDW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "OKC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SNA",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.41414141414141414
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "CLT",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.9761904761904762
  },
  {
    "nickname": "Northwest",
    "destination": "MSN",
    "origin": "MSP",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CMH",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "PHL",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.39171974522292996
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAN",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "PHL",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "LBB",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "SFO",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7365269461077845
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "CLT",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DEN",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ROC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CMH",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7321428571428571
  },
  {
    "nickname": "American",
    "destination": "PVD",
    "origin": "ORD",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6354166666666666
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MDW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8133333333333334
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3609467455621302
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "STL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9104477611940298
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "TPA",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "PHL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "DEN",
    "origin": "MDW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7770700636942676
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "DFW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4250871080139373
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DEN",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7625
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8299319727891157
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "TPA",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "DEN",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8531468531468531
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "SJC",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.7625
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "DTW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9838709677419355
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BDL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.5104602510460251
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "MSP",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ILM",
    "origin": "CLT",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "DEN",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7076023391812866
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "ABQ",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BWI",
    "origin": "MSP",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.44981412639405205
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ILM",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "PHX",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "PHL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "STL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BUF",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.8581560283687943
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.4332129963898917
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SAT",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BOI",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "JAX",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "BOI",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "DEN",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7228915662650602
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "ORD",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4878048780487805
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ALB",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BUF",
    "origin": "JFK",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "CLT",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "DAL",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "ELP",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SFO",
    "origin": "LAS",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28776978417266186
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "FLL",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.815068493150685
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.38762214983713356
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "DFW",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9916666666666667
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5336322869955157
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.47035573122529645
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "RDU",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "BWI",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOI",
    "origin": "MSP",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.15101522842639595
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.6918604651162791
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "OAK",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "TUS",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "America West",
    "destination": "RNO",
    "origin": "PHX",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5242290748898678
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CMH",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9916666666666667
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "CLT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "TPA",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.6820809248554913
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "SFO",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7239263803680982
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ROA",
    "origin": "ATL",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9752066115702479
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.4573643410852713
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "LAX",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6742857142857143
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8027210884353742
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "DAL",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "JFK",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6941176470588235
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BHM",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7048192771084337
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SAT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.7905405405405406
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "LGB",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IND",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BDL",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.4895397489539749
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "PIT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ATL",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BUF",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DTW",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.4148936170212766
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RDU",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MCI",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "DCA",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "PIT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9915254237288136
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.8467153284671532
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.31607629427792916
  },
  {
    "nickname": "American Eagle",
    "destination": "BTR",
    "origin": "DFW",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9354838709677419
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BNA",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6744186046511628
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MCO",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.90625
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "HOU",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "PIT",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7341772151898734
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PWM",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ABQ",
    "origin": "IAH",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8914728682170543
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "ELP",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "ORD",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SNA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "BNA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MCO",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.2979274611398964
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ABQ",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.890625
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4892703862660944
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "PIT",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4892703862660944
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LIT",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ROA",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BWI",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "MCI",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MDW",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "FLL",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8444444444444444
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TUS",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.9661016949152542
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DEN",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9338842975206612
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.5594059405940595
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2627906976744186
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.773972602739726
  },
  {
    "nickname": "Northwest",
    "destination": "BDL",
    "origin": "MSP",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DTW",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PIT",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "BNA",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.30517711171662126
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8115942028985508
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "MIA",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "TUS",
    "origin": "PHX",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7724137931034483
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SNA",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.7320261437908496
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "DFW",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9180327868852459
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "ABQ",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ONT",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.22606924643584522
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7025316455696202
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GRR",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BDL",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ORF",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "JAX",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9910714285714286
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "MCO",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.29365079365079366
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3264705882352941
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "PDX",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "COS",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.9243697478991597
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SMF",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ORF",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "AUS",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "SEA",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5365853658536586
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "DFW",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7746478873239436
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MSP",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "CLT",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MDW",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DEN",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.5729166666666666
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "LAX",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.20833333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MEM",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SMF",
    "origin": "MSP",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MDW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8320610687022901
  },
  {
    "nickname": "Northwest",
    "destination": "ABQ",
    "origin": "MSP",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.2891246684350133
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ABQ",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "CLT",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "SAT",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.2906666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.3797909407665505
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "RNO",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.44672131147540983
  },
  {
    "nickname": "American Eagle",
    "destination": "MAF",
    "origin": "DFW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.990909090909091
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5538461538461539
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8780487804878049
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "TUS",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "DAL",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DEN",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.675
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47577092511013214
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MCO",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9152542372881356
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "LAS",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28272251308900526
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "PHL",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5023255813953489
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.6835443037974683
  },
  {
    "nickname": "America West",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3302752293577982
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ATL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9469026548672567
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8629032258064516
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "STL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9304347826086956
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6079545454545454
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "IAD",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.2907608695652174
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MAF",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 0.9907407407407407
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "TPA",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PHL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.49767441860465117
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33860759493670883
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BOI",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 0.7753623188405797
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RDU",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ABQ",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DCA",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "DTW",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.535
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.28418230563002683
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.28804347826086957
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MDT",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.8907563025210085
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "ELP",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ONT",
    "origin": "MSP",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BWI",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9724770642201835
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "ATL",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "LAX",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8617886178861789
  },
  {
    "nickname": "Alaska",
    "destination": "BUR",
    "origin": "PDX",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MCI",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PVD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "MSP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.44871794871794873
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "CLE",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9905660377358491
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4646017699115044
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "DCA",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "CLE",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "SEA",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7720588235294118
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "BOS",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8974358974358975
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PHX",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9905660377358491
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "ISP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "IAD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8974358974358975
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LAS",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.963302752293578
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "ISP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "SFO",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ONT",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PVD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "IAD",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PHL",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.4406779661016949
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "LIT",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "OAK",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "ELP",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6459627329192547
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BWI",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "CLE",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.911504424778761
  },
  {
    "nickname": "American Eagle",
    "destination": "LIT",
    "origin": "ORD",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "COS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6645161290322581
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.31790123456790126
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9035087719298246
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "TUL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "PIT",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9903846153846154
  },
  {
    "nickname": "Northwest",
    "destination": "PBI",
    "origin": "DTW",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5049019607843137
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MCO",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9903846153846154
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MSY",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.31212121212121213
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PHX",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "COS",
    "origin": "MSP",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.27466666666666667
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "EWR",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5255102040816326
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "CLT",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.6167664670658682
  },
  {
    "nickname": "American Eagle",
    "destination": "LBB",
    "origin": "DFW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7669172932330827
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DFW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6375
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "MCO",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6891891891891891
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.45739910313901344
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "JFK",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MCN",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0002958005028608549,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PBI",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PVD",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LBB",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MCN",
    "origin": "ATL",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00029870050779086323,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MDW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BWI",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "TPA",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SAN",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.9528301886792453
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "HOU",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3435374149659864
  },
  {
    "nickname": "Continental Express",
    "destination": "DTW",
    "origin": "CLE",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8347107438016529
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.6158536585365854
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PBI",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CMH",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7013888888888888
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MDW",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MCO",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.38461538461538464
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DFW",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "IND",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.970873786407767
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PBI",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.9803921568627451
  },
  {
    "nickname": "America West",
    "destination": "ONT",
    "origin": "PHX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.18083182640144665
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3508771929824561
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STL",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "PDX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LAX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.819672131147541
  },
  {
    "nickname": "USAir",
    "destination": "SNA",
    "origin": "PIT",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MIA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5813953488372093
  },
  {
    "nickname": "American",
    "destination": "TUS",
    "origin": "ORD",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LAS",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PHL",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SNA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CLT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SEA",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "PIT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "HOU",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "ABQ",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ELP",
    "origin": "PHX",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.29464285714285715
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MHT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "OAK",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "DFW",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9801980198019802
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "CLT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24205378973105135
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DEN",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "LAS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9423076923076923
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "TPA",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "America West",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.35379061371841153
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "CLT",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.494949494949495
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "AUS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "STL",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9245283018867925
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SYR",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SLC",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5903614457831325
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6758620689655173
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BWI",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "STL",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "SDF",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.9245283018867925
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ISP",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.7185185185185186
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LGB",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "TUL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "MEM",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "TPA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9797979797979798
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "BNA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SAN",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ELP",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.305993690851735
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "AMA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 0.9897959183673469
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "OAK",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PHL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5159574468085106
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SLC",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "ROC",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.7578125
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "DCA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "ATL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "PIT",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.97
  },
  {
    "nickname": "Jetblue",
    "destination": "ROC",
    "origin": "JFK",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7578125
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SFO",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6879432624113475
  },
  {
    "nickname": "American Eagle",
    "destination": "AMA",
    "origin": "DFW",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9897959183673469
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "BUR",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.27170868347338933
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BUR",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "PHL",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BUR",
    "origin": "DFW",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ORD",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6906474820143885
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "CLT",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ALB",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8495575221238938
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2823529411764706
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "SFO",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5925925925925926
  },
  {
    "nickname": "America West",
    "destination": "BUR",
    "origin": "PHX",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "ELP",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "PHL",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9405940594059405
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SFO",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5337078651685393
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "SFO",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6597222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "GEG",
    "origin": "MSP",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PHL",
    "origin": "IAH",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.27941176470588236
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "LIT",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6209150326797386
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SEA",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4634146341463415
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MCI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BWI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9895833333333334
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.47029702970297027
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.34296028880866425
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.28106508875739644
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "OAK",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "FLL",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.28484848484848485
  },
  {
    "nickname": "Delta",
    "destination": "MDT",
    "origin": "ABE",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GEG",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.2678062678062678
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BNA",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "ATL",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "BUR",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGB",
    "origin": "DFW",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "IAH",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8611111111111112
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.3240418118466899
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SLC",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5535714285714286
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RDU",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "PIT",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "LAS",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SAN",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BDL",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.29245283018867924
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BRO",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "EWR",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9789473684210527
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PHL",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.30491803278688523
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "EWR",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4744897959183674
  },
  {
    "nickname": "Continental Express",
    "destination": "BRO",
    "origin": "IAH",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002726004634207878,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "SAN",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DTW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.465
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SAN",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TUS",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.968421052631579
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "CMH",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SNA",
    "origin": "MSP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "HOU",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BOS",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.6618705035971223
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CRP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.26062322946175637
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "HOU",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SNA",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2911392405063291
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "RSW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "RSW",
    "origin": "JFK",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RSW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "CLT",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "ELP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PDX",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.2958199356913183
  },
  {
    "nickname": "United",
    "destination": "MHT",
    "origin": "ORD",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "FLL",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CRP",
    "origin": "IAH",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9578947368421052
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LAS",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "ONT",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PDX",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.978494623655914
  },
  {
    "nickname": "American Eagle",
    "destination": "DSM",
    "origin": "DFW",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.978494623655914
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "PHL",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.48404255319148937
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "MIA",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6946564885496184
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MHT",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "LAX",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6408450704225352
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "GRR",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "BOS",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "PHL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8411214953271028
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.2127659574468085
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MSY",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CLE",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "MSP",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MSP",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PHL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.24456521739130435
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "HRL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "BWI",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "CLT",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "DSM",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.9782608695652174
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Northwest",
    "destination": "RDU",
    "origin": "MSP",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "DEN",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7876106194690266
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BDL",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "SNA",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.3531746031746032
  },
  {
    "nickname": "America West",
    "destination": "AUS",
    "origin": "PHX",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3869565217391304
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "ANC",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "DFW",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6496350364963503
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "PIT",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MEM",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "EWR",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.30584192439862545
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "AUS",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.3869565217391304
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "PIT",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.45595854922279794
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OMA",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.3963963963963964
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MSY",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6616541353383458
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.3087719298245614
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SAT",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "DAL",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7394957983193278
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3320754716981132
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "ABQ",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "SLC",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9886363636363636
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSN",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DTW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "BOI",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "DFW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6541353383458647
  },
  {
    "nickname": "America West",
    "destination": "MKE",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9775280898876404
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.21914357682619648
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "JFK",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9456521739130435
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "JFK",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2701863354037267
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "DFW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LIT",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DTW",
    "origin": "ATL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5375
  },
  {
    "nickname": "Continental Express",
    "destination": "MSN",
    "origin": "CLE",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.225130890052356
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "BNA",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LIT",
    "origin": "IAH",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "OKC",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.31386861313868614
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "ORD",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2866666666666667
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "CLE",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6142857142857143
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "SLC",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7610619469026548
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "STL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9772727272727273
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.42574257425742573
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "ORD",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CLT",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5088757396449705
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BHM",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.8514851485148515
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "MSP",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "STL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "IAD",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "EWR",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DFW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.14991181657848324
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "PHX",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.47752808988764045
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MIA",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9883720930232558
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BDL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MDW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.2961672473867596
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "IAH",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "MDW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "PHL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3231939163498099
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MHT",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "BOI",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BDL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MSY",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.28668941979522183
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "IAH",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9230769230769231
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MKE",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "MCI",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PNS",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.7850467289719626
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "BNA",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LRD",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0003103005275108968,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PNS",
    "origin": "IAH",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7706422018348624
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "PIT",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.3605150214592275
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.345679012345679
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BWI",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "AUS",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.5928571428571429
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SAN",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "SFO",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.46629213483146065
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "HOU",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.32421875
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "CLT",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.4911242603550296
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4256410256410256
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.16403162055335968
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5424836601307189
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "CLT",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.8469387755102041
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "FAY",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.16633266533066132
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FAR",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LRD",
    "origin": "DFW",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0003074005225808884,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "JAX",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "FAY",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00024070040919069562,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LBB",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.20243902439024392
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MSY",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.6693548387096774
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "TUL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.7345132743362832
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ORF",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MIA",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6890756302521008
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IND",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RSW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3374485596707819
  },
  {
    "nickname": "Continental Express",
    "destination": "LBB",
    "origin": "IAH",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "OMA",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9647058823529412
  },
  {
    "nickname": "Continental",
    "destination": "DTW",
    "origin": "IAH",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.24550898203592814
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.07642124883504194
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "RNO",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RDU",
    "origin": "DTW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BOS",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "DEN",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.4270833333333333
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MSY",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "ABQ",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LAS",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSN",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "DAL",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PDX",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.574468085106383
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MHT",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "IAH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SFO",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "CMH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "GEG",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FAR",
    "origin": "MSP",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00023780040426068724,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "IAH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9204545454545454
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.26058631921824105
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "MSP",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "IAD",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MIA",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9302325581395349
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SFO",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.22099447513812154
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "MDW",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MCI",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BDL",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.6015037593984962
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "CLE",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DTW",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.22727272727272727
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BUF",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3389830508474576
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MAF",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.14209591474245115
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "BDL",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.975609756097561
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "CLT",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CVG",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9634146341463414
  },
  {
    "nickname": "American Eagle",
    "destination": "BGR",
    "origin": "BOS",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9634146341463414
  },
  {
    "nickname": "America West",
    "destination": "SLC",
    "origin": "PHX",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.30859375
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4647058823529412
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "BNA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LFT",
    "origin": "IAH",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LFT",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.24307692307692308
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BNA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.9875
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PBI",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "ORD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6638655462184874
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SLC",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.29699248120300753
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "PIT",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "IAD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "OMA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "PHL",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9186046511627907
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.42934782608695654
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14337568058076225
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ROC",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "TPA",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "DFW",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5735294117647058
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1984732824427481
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "OKC",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.8478260869565217
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "LGA",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "OKC",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9397590361445783
  },
  {
    "nickname": "Jetblue",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5492957746478874
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "STL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "CMH",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "ATL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "DEN",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TUL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.30115830115830117
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "PIT",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "DAL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LAS",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8953488372093024
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "LAX",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6260162601626016
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "LGB",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MSY",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9746835443037974
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BNA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.33047210300429186
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.77
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PVD",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0741097208854668
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "ATL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9625
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "BNA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "ATL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DCA",
    "origin": "EWR",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8369565217391305
  },
  {
    "nickname": "American Eagle",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3168724279835391
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "LGA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9746835443037974
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "SLC",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.23123123123123124
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "BGR",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BHM",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "CLE",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.18052256532066507
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "ISP",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.5891472868217055
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PVD",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "TPA",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.8260869565217391
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.5352112676056338
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SAN",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.15966386554621848
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "CMH",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ROC",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "FAI",
    "origin": "ANC",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.95
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "CLE",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "GEG",
    "origin": "PHX",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "CVG",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "America West",
    "destination": "MSP",
    "origin": "PHX",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.21288515406162464
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "HOU",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SEA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MSY",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.7575757575757576
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.13321492007104796
  },
  {
    "nickname": "Delta",
    "destination": "MOB",
    "origin": "ATL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "DEN",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.28735632183908044
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "TUL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ABQ",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9868421052631579
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MCO",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9493670886075949
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.22189349112426035
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "MIA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "JAX",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "PHL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9493670886075949
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MAF",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RIC",
    "origin": "DFW",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LAX",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5597014925373134
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "LGA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8241758241758241
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SYR",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SLC",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.44642857142857145
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "PHL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "LAS",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MAF",
    "origin": "IAH",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "MEM",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "BOI",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "PIT",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "FAI",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 0.9487179487179487
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13805970149253732
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MSY",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.5826771653543307
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.8809523809523809
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OMA",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9135802469135802
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "MSP",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8809523809523809
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ROC",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24104234527687296
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8505747126436781
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5736434108527132
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "DAL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ATL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4625
  },
  {
    "nickname": "Delta",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5692307692307692
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "LAS",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "DFW",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "RDU",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "GEG",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "EWR",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "PHL",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.18387909319899245
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MSY",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MHT",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PHL",
    "origin": "CVG",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8390804597701149
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "FLL",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6293103448275862
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MKE",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SEA",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MCO",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5069444444444444
  },
  {
    "nickname": "American",
    "destination": "JAX",
    "origin": "DFW",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8795180722891566
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "HOU",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "ORD",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24914675767918087
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "IAH",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MIA",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.8390804597701149
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "ORD",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BTR",
    "origin": "ATL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "DSM",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.8372093023255814
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BHM",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "FLL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.972972972972973
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "MCO",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MIA",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.4186046511627907
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5853658536585366
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "HPN",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.45569620253164556
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3050847457627119
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "PHL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.3090128755364807
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MSY",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "American Eagle",
    "destination": "HPN",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "IAD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BTR",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "OMA",
    "origin": "MSP",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2491349480968858
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DCA",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.6990291262135923
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.22468354430379747
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "EWR",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6826923076923077
  },
  {
    "nickname": "American Eagle",
    "destination": "DSM",
    "origin": "ORD",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8068181818181818
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TPA",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.24912280701754386
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "SLC",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.8452380952380952
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "MDW",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7244897959183674
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "MCO",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.4930555555555556
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "EWR",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "MEM",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SAT",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.922077922077922
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PHL",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8352941176470589
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "CLT",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MSP",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.2125748502994012
  },
  {
    "nickname": "America West",
    "destination": "DEN",
    "origin": "LAS",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17149758454106281
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2508833922261484
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.7070707070707071
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.660377358490566
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "HOU",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ATL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.45751633986928103
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IND",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SYR",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DCA",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PVD",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.358974358974359
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "RNO",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PHL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5035971223021583
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "United",
    "destination": "PVD",
    "origin": "ORD",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3645833333333333
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "PBI",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MDT",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "HRL",
    "origin": "IAH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HRL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "PHL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.6831683168316832
  },
  {
    "nickname": "America West",
    "destination": "SAN",
    "origin": "PHX",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.12169312169312169
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "MEM",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "CLE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8734177215189873
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "BDL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.26953125
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SMF",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MFE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 0.7931034482758621
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MIA",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "DCA",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SAN",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "BWI",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PHL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.49640287769784175
  },
  {
    "nickname": "Continental",
    "destination": "MFE",
    "origin": "IAH",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7931034482758621
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "CLT",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BHM",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SLC",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5348837209302325
  },
  {
    "nickname": "ATA",
    "destination": "DCA",
    "origin": "MDW",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "MCI",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "SLC",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "EWR",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "SMF",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.3194444444444444
  },
  {
    "nickname": "Continental Express",
    "destination": "JFK",
    "origin": "CLE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7840909090909091
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7157894736842105
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.16152019002375298
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "TPA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6868686868686869
  },
  {
    "nickname": "Continental Express",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.22149837133550487
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "PHL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BNA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.918918918918919
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "GSO",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "FLL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "ABQ",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "BNA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BDL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "SJC",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "JFK",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7816091954022989
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LAS",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "STL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9577464788732394
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "TUL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MDW",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "PIT",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "STL",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9710144927536232
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MFE",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3316831683168317
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "AMA",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SYR",
    "origin": "JFK",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6907216494845361
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PDX",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SAT",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RIC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MFE",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ORF",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.8933333333333333
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MDW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.5037593984962406
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5775862068965517
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SYR",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.6767676767676768
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "EWR",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9852941176470589
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "CLE",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "ORD",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7052631578947368
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "SLC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.4036144578313253
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "JAC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.23591549295774647
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IND",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OMA",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.49624060150375937
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.22525597269624573
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PHL",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "DAL",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PHL",
    "origin": "MDW",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.49624060150375937
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "PIT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ONT",
    "origin": "PDX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SEA",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "PHX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "OKC",
    "origin": "IAH",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6226415094339622
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MHT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CLT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.3235294117647059
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "DCA",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "OKC",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.9705882352941176
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SFO",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.559322033898305
  },
  {
    "nickname": "Northwest",
    "destination": "CMH",
    "origin": "MSP",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SAT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "JAN",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JAC",
    "origin": "DEN",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "RIC",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9705882352941176
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "PIT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BHM",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ALB",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MCI",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.48872180451127817
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "AUS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BTV",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.2754237288135593
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SJC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2145214521452145
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LAS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "ISP",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15738498789346247
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "ATL",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "BOS",
    "origin": "MDW",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "TPA",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7647058823529411
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8441558441558441
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.7558139534883721
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "OKC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.6190476190476191
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.32653061224489793
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "MCO",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.29906542056074764
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RDU",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1161524500907441
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2922374429223744
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ROC",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.9846153846153847
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SJU",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5039370078740157
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "TPA",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.5565217391304348
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8205128205128205
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "LGA",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8421052631578947
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "PHX",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7111111111111111
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "PBI",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "AUS",
    "origin": "IAH",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSN",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SYR",
    "origin": "CLE",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15254237288135594
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "TUS",
    "origin": "MSP",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PNS",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "DCA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9402985074626866
  },
  {
    "nickname": "United",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.27876106194690264
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PVD",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MCO",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "TUS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "CMH",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6774193548387096
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "PIT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SDF",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "ATL",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IND",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "TPA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BNA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "BWI",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PNS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "DCA",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.21602787456445993
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BTR",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.24124513618677043
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "LAX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6391752577319587
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "IAH",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6458333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ALB",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "BWI",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "IND",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6262626262626263
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LAX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5344827586206896
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "PHX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3147208121827411
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "EWR",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8857142857142857
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "STL",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6813186813186813
  },
  {
    "nickname": "American",
    "destination": "PSP",
    "origin": "ORD",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9841269841269841
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "IAH",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8378378378378378
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.30392156862745096
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "ATL",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.29901960784313725
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SLC",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6853932584269663
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MCO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8472222222222222
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "LGA",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2747747747747748
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BUF",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RNO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "PHL",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.2890995260663507
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "ABQ",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MOB",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 0.953125
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DEN",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15404040404040403
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LAX",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7922077922077922
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BUF",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.9242424242424242
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MKE",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BZN",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00017980030566051963,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "AUS",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ALB",
    "origin": "DTW",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "ISP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3177083333333333
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "IND",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6777777777777778
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 0.9838709677419355
  },
  {
    "nickname": "Northwest",
    "destination": "RNO",
    "origin": "MSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SAT",
    "origin": "IAH",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9104477611940298
  },
  {
    "nickname": "United",
    "destination": "MCI",
    "origin": "ORD",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3128205128205128
  },
  {
    "nickname": "American",
    "destination": "ELP",
    "origin": "ORD",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MCI",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "LAX",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "BNA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "PDX",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.425531914893617
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.15706806282722513
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "TPA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "JFK",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SAN",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "EWR",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SYR",
    "origin": "EWR",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "FLL",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SMF",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BZN",
    "origin": "MSP",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00017690030073051123,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTR",
    "origin": "IAH",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.967741935483871
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "SLC",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.46511627906976744
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5514018691588785
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SAT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SEA",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5130434782608696
  },
  {
    "nickname": "American Eagle",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6145833333333334
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "DEN",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7866666666666666
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2645739910313901
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MEM",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "EWR",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9672131147540983
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "CLT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PBI",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.7375
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PDX",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MDT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "CLT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TUL",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.5673076923076923
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.21299638989169675
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "OKC",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DFW",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.23412698412698413
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "PIT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "PIT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9365079365079365
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "PDX",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.6781609195402298
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ALB",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6904761904761905
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.48333333333333334
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "CLE",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.25217391304347825
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.20567375886524822
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "DFW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4264705882352941
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.6105263157894737
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9206349206349206
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DFW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1939799331103679
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.23770491803278687
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SMF",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.17737003058103976
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.38666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BNA",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "HOU",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "SJU",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BOI",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.35365853658536583
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BUF",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MSY",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BNA",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "LAS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.18471337579617833
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "JAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DAY",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BNA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "PIT",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.18811881188118812
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BNA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "MEM",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MEM",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "MCO",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "SAN",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "OAK",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PBI",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SAN",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.1347517730496454
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PDX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "DCA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "IAH",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "AUS",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.40714285714285714
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.36774193548387096
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "LAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.32571428571428573
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6705882352941176
  },
  {
    "nickname": "Continental Express",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.20284697508896798
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "AUS",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "FAT",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00016530028101047772,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "EWR",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "American",
    "destination": "FAT",
    "origin": "DFW",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00016530028101047772,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SJC",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.7125
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "MSP",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "LGB",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SLC",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DAL",
    "origin": "IAH",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6511627906976745
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DAL",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 0.6511627906976745
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SJC",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.11789473684210526
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "OAK",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.509090909090909
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "CLE",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4307692307692308
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "TPA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSP",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.6222222222222222
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.39436619718309857
  },
  {
    "nickname": "Continental Express",
    "destination": "GSO",
    "origin": "EWR",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9491525423728814
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "United",
    "destination": "MCI",
    "origin": "DEN",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PVD",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ABQ",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MCO",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "CLT",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.23728813559322035
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.18122977346278318
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MIA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OAK",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "American Eagle",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "United",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.632183908045977
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.2849740932642487
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "PVD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "IAH",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5978260869565217
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PIT",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8870967741935484
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MHT",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.20912547528517111
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "TPA",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ELP",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Continental Express",
    "destination": "TUL",
    "origin": "IAH",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "TPA",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.3179190751445087
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "CLE",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.29891304347826086
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "LAS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RIC",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6179775280898876
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BOS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MSY",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "XNA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PVD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "United",
    "destination": "RIC",
    "origin": "ORD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "HOU",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "TUS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.23893805309734514
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1758957654723127
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "DFW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MCI",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.5294117647058824
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15976331360946747
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "ABQ",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "LAX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.46551724137931033
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MKE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "AUS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "ORD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CLE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.38571428571428573
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ORF",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.9818181818181818
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PHX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PVD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.27
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "EWR",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "America West",
    "destination": "LGB",
    "origin": "PHX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SYR",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "OAK",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4909090909090909
  },
  {
    "nickname": "ATA",
    "destination": "CLT",
    "origin": "MDW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BHM",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4251968503937008
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "AMA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LGB",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PHL",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ELP",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19148936170212766
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BNA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GSO",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.9310344827586207
  },
  {
    "nickname": "America West",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.19081272084805653
  },
  {
    "nickname": "Continental Express",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.32919254658385094
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.23660714285714285
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "ABQ",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MSY",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.41732283464566927
  },
  {
    "nickname": "Northwest",
    "destination": "PVD",
    "origin": "MSP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "OAK",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "RDU",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "STL",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9814814814814815
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "JAX",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "BOS",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "LAS",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BUF",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BWI",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "CLT",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "IND",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "CLT",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7910447761194029
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "DTW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BNA",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.6309523809523809
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "DTW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SEA",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.4649122807017544
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "DFW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "MSP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ISP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.4108527131782946
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5196078431372549
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "DCA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "CLT",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33986928104575165
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SAT",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "CLE",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SYR",
    "origin": "ORD",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RNO",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "LGA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7323943661971831
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MCI",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DTW",
    "origin": "DEN",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.29545454545454547
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "PHX",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9454545454545454
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SEA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33548387096774196
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "STL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "DEN",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.325
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PWM",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1925925925925926
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.33548387096774196
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "RDU",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BTV",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "JFK",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.3058823529411765
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "STL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "MIA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9107142857142857
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BOS",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "DCA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PDX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RIC",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "BNA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.8947368421052632
  },
  {
    "nickname": "American Eagle",
    "destination": "BWI",
    "origin": "JFK",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "LAX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3591549295774648
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.3953488372093023
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "CLE",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.24170616113744076
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "PHX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MCI",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "TPA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.4434782608695652
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MHT",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "MCO",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "FLL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MEM",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "SAN",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LFT",
    "origin": "DFW",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6219512195121951
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.22566371681415928
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "CLE",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "CLT",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SAN",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "FLL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6623376623376623
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BWI",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.8360655737704918
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3953488372093023
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "EWR",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Continental Express",
    "destination": "ALB",
    "origin": "EWR",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "LAX",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9803921568627451
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.16447368421052633
  },
  {
    "nickname": "Delta",
    "destination": "MEM",
    "origin": "ATL",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6944444444444444
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "STT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 0.9259259259259259
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6329113924050633
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "IAD",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.20833333333333334
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CLT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.25125628140703515
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BHM",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.21008403361344538
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "SFO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6756756756756757
  },
  {
    "nickname": "Continental Express",
    "destination": "PVD",
    "origin": "EWR",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8064516129032258
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MIA",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.819672131147541
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "AUS",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.2304147465437788
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5617977528089888
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.9259259259259259
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3246753246753247
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "PIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "LAS",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14705882352941177
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "MCO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.2717391304347826
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.29069767441860467
  },
  {
    "nickname": "American Eagle",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.25906735751295334
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "CLT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LAS",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8596491228070176
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.28823529411764703
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "IAD",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "SFO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3402777777777778
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.5697674418604651
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "DCA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PVD",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MCI",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4152542372881356
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BTV",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "PHX",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LFT",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 0.6282051282051282
  },
  {
    "nickname": "United",
    "destination": "OMA",
    "origin": "DEN",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BTV",
    "origin": "JFK",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SFO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MIA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "HOU",
    "origin": "DFW",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6901408450704225
  },
  {
    "nickname": "Continental Express",
    "destination": "PVD",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9074074074074074
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "HOU",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.6901408450704225
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "ABQ",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LAX",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7424242424242424
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "OMA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.7424242424242424
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3983739837398374
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MCO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.4803921568627451
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "PWM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.9056603773584906
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5052631578947369
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9056603773584906
  },
  {
    "nickname": "American Eagle",
    "destination": "ISP",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "RSW",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8727272727272727
  },
  {
    "nickname": "Continental Express",
    "destination": "BWI",
    "origin": "EWR",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.96
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "MEM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "EWR",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8727272727272727
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AMA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1875
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MCI",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.47058823529411764
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "DCA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MSY",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9795918367346939
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "HOU",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.1951219512195122
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ISP",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "IAD",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "SJC",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.1322314049586777
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OMA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "BHM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MOB",
    "origin": "IAH",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ALB",
    "origin": "CLE",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AMA",
    "origin": "IAH",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SEA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SEA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "CLT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MSP",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19123505976095617
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SDF",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MOB",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "PDX",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SAV",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAT",
    "origin": "ATL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "BOS",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.49473684210526314
  },
  {
    "nickname": "American Eagle",
    "destination": "MKE",
    "origin": "ORD",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9791666666666666
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SAN",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MCI",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CLT",
    "origin": "ORD",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2315270935960591
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MIA",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ORF",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8867924528301887
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.47959183673469385
  },
  {
    "nickname": "Continental Express",
    "destination": "MHT",
    "origin": "CLE",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9591836734693877
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5662650602409639
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.41228070175438597
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "BOS",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.3381294964028777
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "SAN",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "OMA",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.734375
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.5280898876404494
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "STL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "SDF",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "LEX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "PHX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "LGA",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.44761904761904764
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "CVG",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7966101694915254
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "CVG",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MKE",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9787234042553191
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "CLE",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "DFW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3458646616541353
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.31724137931034485
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "TPA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SDF",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ROC",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9787234042553191
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "JAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "ATL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LGA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SNA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.37398373983739835
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "DCA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "ANC",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6133333333333333
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DEN",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "DFW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PSP",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.14556962025316456
  },
  {
    "nickname": "American Eagle",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13609467455621302
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2967741935483871
  },
  {
    "nickname": "Continental Express",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.26900584795321636
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "MCI",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09292929292929293
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "TPA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.6216216216216216
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "OAK",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "JAN",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "MCO",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3108108108108108
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PBI",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BHM",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.11764705882352941
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "ELP",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "AVL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RSW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "DCA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "AVL",
    "origin": "CLT",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "SAT",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BUF",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.647887323943662
  },
  {
    "nickname": "Jetblue",
    "destination": "SAN",
    "origin": "JFK",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "EWR",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PSP",
    "origin": "DFW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CHS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "COS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "Continental Express",
    "destination": "ROC",
    "origin": "CLE",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "CVG",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7377049180327869
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MSY",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SDF",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "JAX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.5172413793103449
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PHL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RSW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BUF",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MCO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SFO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.27607361963190186
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ILE",
    "origin": "DFW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0012122020607435032,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1079136690647482
  },
  {
    "nickname": "USAir",
    "destination": "SRQ",
    "origin": "CLT",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "ILE",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.10843373493975904
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RIC",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.8035714285714286
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "PHL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Continental",
    "destination": "TUL",
    "origin": "IAH",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "MCO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.24725274725274726
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "BOS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9782608695652174
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSY",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "COS",
    "origin": "IAH",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "United",
    "destination": "RSW",
    "origin": "ORD",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PHX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SLC",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "BNA",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.24861878453038674
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "MCI",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TUL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.4326923076923077
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PVD",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "America West",
    "destination": "SAN",
    "origin": "LAS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.08888888888888889
  },
  {
    "nickname": "Northwest",
    "destination": "JAX",
    "origin": "MSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SRQ",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "JAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "RDU",
    "origin": "JFK",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.22797927461139897
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "ATL",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SFO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2634730538922156
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MKE",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CHS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.9565217391304348
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CMH",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6111111111111112
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "LGA",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7213114754098361
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "SFO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3120567375886525
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "IAD",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8627450980392157
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "DTW",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "CLT",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TYS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.27848101265822783
  },
  {
    "nickname": "Alaska",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Continental Express",
    "destination": "ISP",
    "origin": "CLE",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.6027397260273972
  },
  {
    "nickname": "Delta",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8148148148148148
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "IAD",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4782608695652174
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "OAK",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.19298245614035087
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ISP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.18565400843881857
  },
  {
    "nickname": "Continental Express",
    "destination": "SAV",
    "origin": "EWR",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.8301886792452831
  },
  {
    "nickname": "American Eagle",
    "destination": "CRP",
    "origin": "DFW",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "SYR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.14776632302405499
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "SFO",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6935483870967742
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ALB",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "TPA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "ORF",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.31386861313868614
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAT",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SAN",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "EWR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BHM",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SYR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.4387755102040816
  },
  {
    "nickname": "United",
    "destination": "PIT",
    "origin": "ORD",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.30935251798561153
  },
  {
    "nickname": "Southwest",
    "destination": "SFO",
    "origin": "SAN",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.24431818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.33076923076923076
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "MSY",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.7049180327868853
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "FNT",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "CVG",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9347826086956522
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ABQ",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "MCI",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "LGA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8431372549019608
  },
  {
    "nickname": "American Eagle",
    "destination": "BPT",
    "origin": "DFW",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DTW",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "BDL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.5512820512820513
  },
  {
    "nickname": "Southwest",
    "destination": "CRP",
    "origin": "HOU",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5657894736842105
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MCO",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3706896551724138
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "MEM",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PHX",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9347826086956522
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "ORD",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.19545454545454546
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.22950819672131148
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.19811320754716982
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "CRP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "OAK",
    "origin": "PDX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.17142857142857143
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "DCA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MIA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CRP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PHX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BOI",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSO",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.32558139534883723
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "PHL",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1926605504587156
  },
  {
    "nickname": "United",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.32558139534883723
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "JAX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.4827586206896552
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "MCI",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "JFK",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.2441860465116279
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.26582278481012656
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "RSW",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "DFW",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6176470588235294
  },
  {
    "nickname": "America West",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15849056603773584
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "JAN",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MKE",
    "origin": "CVG",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6774193548387096
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.29577464788732394
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BUF",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "ONT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "RDU",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LGA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2887323943661972
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.37962962962962965
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LCH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00011890020213034362,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CHS",
    "origin": "EWR",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9534883720930233
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "BNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.2679738562091503
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LIT",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MAF",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "RDU",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LCH",
    "origin": "IAH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00011890020213034362,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MSY",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.33064516129032256
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BPT",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00022330037961064533,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SNA",
    "origin": "DTW",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ORF",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9761904761904762
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.3904761904761905
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "FLL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.1583011583011583
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSO",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00011890020213034362,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2887323943661972
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.30597014925373134
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.19806763285024154
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "IAH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5125
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3565217391304348
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SJC",
    "origin": "DTW",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3082706766917293
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ALB",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "PHL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PSP",
    "origin": "MSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19607843137254902
  },
  {
    "nickname": "American Eagle",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6060606060606061
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "SAT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9302325581395349
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.5970149253731343
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08908685968819599
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.12578616352201258
  },
  {
    "nickname": "American Eagle",
    "destination": "HPN",
    "origin": "BOS",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "ATA",
    "destination": "RSW",
    "origin": "MDW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Continental Express",
    "destination": "ELP",
    "origin": "IAH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SFO",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.19801980198019803
  },
  {
    "nickname": "Continental",
    "destination": "OKC",
    "origin": "IAH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.37735849056603776
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "CVG",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.975609756097561
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "JFK",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "ORD",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.33613445378151263
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SAN",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "ABQ",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ELP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "HPN",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7407407407407407
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DLH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OKC",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.38095238095238093
  },
  {
    "nickname": "Continental Express",
    "destination": "PWM",
    "origin": "EWR",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "OAK",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.0947867298578199
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MIA",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.3053435114503817
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "PIT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "AUS",
    "origin": "ATL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "RSW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MHT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.12786885245901639
  },
  {
    "nickname": "American Eagle",
    "destination": "PHL",
    "origin": "BOS",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.08441558441558442
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SHV",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4875
  },
  {
    "nickname": "Continental",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1387900355871886
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SJC",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6724137931034483
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSY",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BUF",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GSP",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.10344827586206896
  },
  {
    "nickname": "Continental Express",
    "destination": "ICT",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "HNL",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.975
  },
  {
    "nickname": "Continental Express",
    "destination": "AEX",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SHV",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "CVG",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ICT",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7222222222222222
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MKE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "ORD",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.11470588235294117
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PWM",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SEA",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DLH",
    "origin": "MSP",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00011310019227032685,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "OAK",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IAD",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5342465753424658
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "STL",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ALB",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AEX",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "JAX",
    "origin": "DTW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "ROC",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MKE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MDW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MCI",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "DEN",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.975
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LBB",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MCI",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.6610169491525424
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "United",
    "destination": "ABQ",
    "origin": "DEN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24050632911392406
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "ELP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "DFW",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SAN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.07480314960629922
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BUF",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.6031746031746031
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "IAH",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BNA",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.1919191919191919
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "LAS",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ISP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.2814814814814815
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MHT",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.95
  },
  {
    "nickname": "Comair",
    "destination": "DTW",
    "origin": "CVG",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "LAS",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BHM",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SJC",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2375
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "FLL",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MDW",
    "origin": "DEN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.2375
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BTV",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RDU",
    "origin": "IAH",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6440677966101694
  },
  {
    "nickname": "American Eagle",
    "destination": "MKE",
    "origin": "DFW",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SJC",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.1630901287553648
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RDU",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6440677966101694
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "BWI",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "CLT",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "DEN",
    "origin": "JFK",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "LAX",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09223300970873786
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "ELP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IND",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8409090909090909
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "LGA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MKE",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BHM",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.5692307692307692
  },
  {
    "nickname": "Continental Express",
    "destination": "GPT",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008033013656123215,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GPT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "IND",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.37373737373737376
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "LGA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ALB",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "PIT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "BNA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MCI",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SJC",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "MIA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.31092436974789917
  },
  {
    "nickname": "American",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.15416666666666667
  },
  {
    "nickname": "Continental",
    "destination": "MCI",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.40217391304347827
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "LAS",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "DEN",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SMF",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.0968586387434555
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SLC",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "TPA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MHT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "CMH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "TPA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.16517857142857142
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RSW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MSY",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3894736842105263
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.15546218487394958
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "JAX",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PHX",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SMF",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.7708333333333334
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MKE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.7659574468085106
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ABQ",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.12857142857142856
  },
  {
    "nickname": "Continental Express",
    "destination": "BPT",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "AUS",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IND",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.43373493975903615
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "STL",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6792452830188679
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "GEG",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BPT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00022330037961064533,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "SFO",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "EWR",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16744186046511628
  },
  {
    "nickname": "Continental Express",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1592920353982301
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "IAD",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "BHM",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CHS",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SLC",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "BOI",
    "origin": "PHX",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SAT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "America West",
    "destination": "OAK",
    "origin": "LAS",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.096
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CAE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MKE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "BOI",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CMH",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.72
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "PIT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "ABQ",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IND",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "ABQ",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "TPA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "RDU",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "CVG",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PIT",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.6730769230769231
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "MCO",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6481481481481481
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "GSP",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MCI",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ORF",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.032618825722273995
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SDF",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.5833333333333334
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.21875
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PWM",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "STL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7291666666666666
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "JAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Alaska",
    "destination": "TUS",
    "origin": "SEA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "DTW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "STL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.36082474226804123
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1881720430107527
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "BWI",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MDW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.2229299363057325
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SJC",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TPA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BDL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.44871794871794873
  },
  {
    "nickname": "Continental",
    "destination": "SJC",
    "origin": "IAH",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "DCA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PIT",
    "origin": "MDW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "ABQ",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.2556390977443609
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SLC",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "CLE",
    "origin": "MSP",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.37777777777777777
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SDF",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "DTW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "LAS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "MDW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "TUS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "CVG",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "ORD",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9714285714285714
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.26356589147286824
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LGA",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8717948717948718
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "DFW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LIT",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.11564625850340136
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "MCO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BUF",
    "origin": "CLE",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.21518987341772153
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BWI",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.19318181818181818
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "TYS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "BWI",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "AUS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "IAH",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3541666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MAF",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2088607594936709
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "HNL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PHX",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.16751269035532995
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SAT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9428571428571428
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TUL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PIT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.10509554140127389
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "PHX",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.22758620689655173
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "GSO",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "TUS",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.21568627450980393
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "RSW",
    "origin": "IND",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "American",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.19411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "RDU",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.717391304347826
  },
  {
    "nickname": "United",
    "destination": "IND",
    "origin": "DEN",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "IND",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PSP",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MSP",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.08967391304347826
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "SLC",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DTW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.1783783783783784
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "RDU",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.19642857142857142
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SNA",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "RSW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8918918918918919
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CMH",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.7021276595744681
  },
  {
    "nickname": "Continental",
    "destination": "IND",
    "origin": "EWR",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.3173076923076923
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "CLE",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MDT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TUL",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CHS",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "JAN",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03686635944700461
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "IND",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.7804878048780488
  },
  {
    "nickname": "Continental Express",
    "destination": "JAN",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "MCO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3047619047619048
  },
  {
    "nickname": "Delta",
    "destination": "MKE",
    "origin": "ATL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9411764705882353
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "PIT",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MDT",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGB",
    "origin": "ORD",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ONT",
    "origin": "LAS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.10596026490066225
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MSP",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.0896358543417367
  },
  {
    "nickname": "Continental Express",
    "destination": "SAV",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GSO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.04060913705583756
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "OAK",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.45714285714285713
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "PHL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.31683168316831684
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "SYR",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.32323232323232326
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "AUS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SFO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8205128205128205
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "COS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3950617283950617
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "DFW",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.22535211267605634
  },
  {
    "nickname": "Delta",
    "destination": "GSO",
    "origin": "ATL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "PHL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "SDF",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MEM",
    "origin": "CLT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "BOI",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 0.2246376811594203
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "PIT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "JFK",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2421875
  },
  {
    "nickname": "Alaska",
    "destination": "BOI",
    "origin": "SEA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.22794117647058823
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CMH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.8157894736842105
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HSV",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "TPA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7045454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LIT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.4492753623188406
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SDF",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "ONT",
    "origin": "JFK",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "HOU",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "AUS",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.09117647058823529
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.6595744680851063
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "GEG",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ALB",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SAT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.20945945945945946
  },
  {
    "nickname": "America West",
    "destination": "SAT",
    "origin": "PHX",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.17318435754189945
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MEM",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTV",
    "origin": "EWR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "BDL",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.1901840490797546
  },
  {
    "nickname": "American Eagle",
    "destination": "GRR",
    "origin": "ORD",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6888888888888889
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "GRR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.6888888888888889
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "MDW",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ROC",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.2421875
  },
  {
    "nickname": "Delta",
    "destination": "MSP",
    "origin": "ATL",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.12653061224489795
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DCA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.30097087378640774
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LFT",
    "origin": "DFW",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3780487804878049
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "ONT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "PHX",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "MEM",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MKE",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9117647058823529
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "AMA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.10032362459546926
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "LAS",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9393939393939394
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "CVG",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7209302325581395
  },
  {
    "nickname": "Comair",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6521739130434783
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.11450381679389313
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "MCI",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SFO",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PHL",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "IAD",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BNA",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.30927835051546393
  },
  {
    "nickname": "Delta",
    "destination": "MSP",
    "origin": "CVG",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "PIT",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TUL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2631578947368421
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "IAH",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3488372093023256
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "RDU",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "FAI",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "LAX",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LBB",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "TUL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.26548672566371684
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PHL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.18072289156626506
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5454545454545454
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MCO",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2054794520547945
  },
  {
    "nickname": "America West",
    "destination": "COS",
    "origin": "PHX",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DCA",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7317073170731707
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RSW",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.2631578947368421
  },
  {
    "nickname": "Southwest",
    "destination": "IAH",
    "origin": "DAL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 0.3488372093023256
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16304347826086957
  },
  {
    "nickname": "American Eagle",
    "destination": "PIT",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7317073170731707
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PHL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1271186440677966
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "COS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.17964071856287425
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IAD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.09508196721311475
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PBI",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5918367346938775
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ABE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "IND",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.32222222222222224
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.32222222222222224
  },
  {
    "nickname": "Comair",
    "destination": "FWA",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DTW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSN",
    "origin": "DTW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "LFT",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 0.3717948717948718
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "STL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MHT",
    "origin": "MSP",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "COS",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "IND",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "STL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.31868131868131866
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TPA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "CLE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.18012422360248448
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ABE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "ATL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SAN",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MHT",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SEA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9666666666666667
  },
  {
    "nickname": "Continental",
    "destination": "RDU",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.38666666666666666
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "TYS",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.27102803738317754
  },
  {
    "nickname": "ATA",
    "destination": "PHX",
    "origin": "MDW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.13744075829383887
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "CMH",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BNA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.7435897435897436
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "MAF",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PIE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RDU",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3670886075949367
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "JFK",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.17365269461077845
  },
  {
    "nickname": "United",
    "destination": "STT",
    "origin": "ORD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LGB",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.725
  },
  {
    "nickname": "Continental Express",
    "destination": "MHT",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.90625
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "PBI",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.17365269461077845
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ABQ",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6304347826086957
  },
  {
    "nickname": "United",
    "destination": "PBI",
    "origin": "ORD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5918367346938775
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SJU",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SAN",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CMH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.3888888888888889
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.6363636363636364
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "EWR",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7567567567567568
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.3146067415730337
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "RIC",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "PIT",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FWA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "LEX",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "SFO",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "JFK",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9032258064516129
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "DCA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9655172413793104
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GSP",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "PDX",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.3218390804597701
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SAV",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MCI",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "CMH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.2828282828282828
  },
  {
    "nickname": "USAir",
    "destination": "BHM",
    "origin": "CLT",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BHM",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "TPA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.3783783783783784
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "CVG",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PBI",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.4057971014492754
  },
  {
    "nickname": "Delta",
    "destination": "PHL",
    "origin": "ATL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.1339712918660287
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "STL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7567567567567568
  },
  {
    "nickname": "United",
    "destination": "CMH",
    "origin": "DEN",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LBB",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CAE",
    "origin": "IAH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "FAI",
    "origin": "SEA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "ORD",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.29473684210526313
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BHM",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.4307692307692308
  },
  {
    "nickname": "Continental Express",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2413793103448276
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.10606060606060606
  },
  {
    "nickname": "ATA",
    "destination": "FLL",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.18666666666666668
  },
  {
    "nickname": "American Eagle",
    "destination": "DCA",
    "origin": "JFK",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9655172413793104
  },
  {
    "nickname": "America West",
    "destination": "MSP",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.08115942028985507
  },
  {
    "nickname": "American Eagle",
    "destination": "GSO",
    "origin": "DFW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ONT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SJU",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "LGA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "PIT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MCO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ONT",
    "origin": "ATL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "TPA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SEA",
    "origin": "MDW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.2755102040816326
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "DFW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.14361702127659576
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "OAK",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GSO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BTV",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PIT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "PHL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08881578947368421
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BWI",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.675
  },
  {
    "nickname": "Comair",
    "destination": "TOL",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BDL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3698630136986301
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "DCA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SEA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "JAX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LEX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SLC",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.30337078651685395
  },
  {
    "nickname": "American Eagle",
    "destination": "PVD",
    "origin": "LGA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BDL",
    "origin": "JFK",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ROC",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "AGS",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7105263157894737
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "LAS",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "CLT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "EWR",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "STL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.84375
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BDL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SDF",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "PDX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SRQ",
    "origin": "ATL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "FLL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.18493150684931506
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7105263157894737
  },
  {
    "nickname": "Continental Express",
    "destination": "HSV",
    "origin": "IAH",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MCI",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TOL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MSY",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "PVD",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MSY",
    "origin": "PHX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.28888888888888886
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DAY",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BDL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LIT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.26262626262626265
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "BTV",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FNT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CAE",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.08024691358024691
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SRQ",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BHM",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CMH",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.38235294117647056
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "PDX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "IAD",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.65
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "TPA",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "TPA",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "CLT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "AEX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "JAX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.5306122448979592
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "BOS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "AUS",
    "origin": "DTW",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "AUS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.27956989247311825
  },
  {
    "nickname": "Continental Express",
    "destination": "BDL",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "CVG",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6046511627906976
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "FLL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.33766233766233766
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "IAH",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "LAS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORF",
    "origin": "ATL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.14207650273224043
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MHT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BHM",
    "origin": "LGA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6410256410256411
  },
  {
    "nickname": "American Eagle",
    "destination": "SDF",
    "origin": "ORD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OGG",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "MEM",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSP",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Continental",
    "destination": "PNS",
    "origin": "IAH",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.22935779816513763
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "LAX",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SMF",
    "origin": "ATL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MSY",
    "origin": "JFK",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.373134328358209
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "SDF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4166666666666667
  },
  {
    "nickname": "Comair",
    "destination": "LIT",
    "origin": "CVG",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "ABQ",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "EWR",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.45454545454545453
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "DFW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "SDF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5952380952380952
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MSY",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LAX",
    "origin": "XNA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.06476683937823834
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ROC",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BUF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.3968253968253968
  },
  {
    "nickname": "Northwest",
    "destination": "FSD",
    "origin": "MSP",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00010150017255029334,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "CMH",
    "origin": "DTW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "IND",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "HNL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BUF",
    "origin": "EWR",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.352112676056338
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "MDW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.14705882352941177
  },
  {
    "nickname": "American Eagle",
    "destination": "BTV",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8620689655172413
  },
  {
    "nickname": "ATA",
    "destination": "SRQ",
    "origin": "IND",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.1497005988023952
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RSW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14204545454545456
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "MSY",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FSD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00010150017255029334,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTV",
    "origin": "CLE",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CHS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "SLC",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "ORD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "ATL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SMF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LIT",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BNA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.15432098765432098
  },
  {
    "nickname": "United",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.36363636363636365
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "BOS",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HSV",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.2696629213483146
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "DCA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.6486486486486487
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MIA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.8275862068965517
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "CMH",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "DEN",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MCO",
    "origin": "MDW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MSY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "IAH",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.631578947368421
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.16901408450704225
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MSY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.24242424242424243
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GSO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "American",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "BNA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.25263157894736843
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "DEN",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.21238938053097345
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MIA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.12371134020618557
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "RNO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.06091370558375635
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "SLC",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DAY",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3157894736842105
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "HRL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "ATL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "SFO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.32432432432432434
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BHM",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SAT",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BHM",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "RDU",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SLC",
    "origin": "JFK",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6153846153846154
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "STL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MSP",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CAE",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "GSO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.42105263157894735
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LAX",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "Comair",
    "destination": "IND",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "ORF",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SLC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Continental Express",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1377245508982036
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SRQ",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.02213666987487969
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "PIT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PNS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.21495327102803738
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "SJC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2875
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "FLL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8518518518518519
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ROA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "JFK",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "SEA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.07098765432098765
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CAE",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LIT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LRD",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0003074005225808884,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IND",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8214285714285714
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "BOS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TUL",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "SRQ",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "BWI",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.14375
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AEX",
    "origin": "DFW",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "MEM",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.8214285714285714
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "Continental",
    "destination": "SRQ",
    "origin": "EWR",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TUL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRB",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BDL",
    "origin": "CLE",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5609756097560976
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6764705882352942
  },
  {
    "nickname": "United",
    "destination": "MSP",
    "origin": "DEN",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.060526315789473685
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LAS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.13609467455621302
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PHL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "JAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LRD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0003103005275108968,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ANC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BNA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MSN",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "ORD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "XNA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "United",
    "destination": "RNO",
    "origin": "SFO",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "JAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BDL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1619718309859155
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ORF",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5641025641025641
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.059782608695652176
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "CLT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "KOA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4888888888888889
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.06875
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "BOS",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5116279069767442
  },
  {
    "nickname": "American Eagle",
    "destination": "PVD",
    "origin": "JFK",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "PIT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AGS",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SLC",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.25882352941176473
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LAX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.18032786885245902
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SDF",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RAP",
    "origin": "MSP",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006380010846018439,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "COS",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6111111111111112
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OGG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "COS",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GTR",
    "origin": "ATL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0001073001824103101,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "HOU",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.30985915492957744
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.16923076923076924
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CLT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "PIT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "MIA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "HOU",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.30985915492957744
  },
  {
    "nickname": "America West",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.10377358490566038
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MEM",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CMH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5641025641025641
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RAP",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00006380010846018439,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "KOA",
    "origin": "OGG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "PVD",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MAF",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LAN",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "MDW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.16793893129770993
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "ATL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.3055555555555556
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CAE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DSM",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.125
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DAY",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "JAX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MKE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1286549707602339
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSY",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.8148148148148148
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LAN",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DSM",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1527777777777778
  },
  {
    "nickname": "Continental Express",
    "destination": "MSY",
    "origin": "CLE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "BOS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.4883720930232558
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "HSV",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "DFW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.08235294117647059
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SAN",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROC",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.14788732394366197
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.19811320754716982
  },
  {
    "nickname": "Continental Express",
    "destination": "EFD",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DEN",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.14685314685314685
  },
  {
    "nickname": "Continental",
    "destination": "SMF",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OMA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "DTW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MAF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SRQ",
    "origin": "DTW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ANC",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "SAT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MEI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "EFD",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "TPA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Continental",
    "destination": "SAT",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "FLL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.15555555555555556
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "CLT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PBI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.2625
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.18584070796460178
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ONT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.061046511627906974
  },
  {
    "nickname": "American",
    "destination": "HSV",
    "origin": "DFW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SMF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TYS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MCI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "Delta",
    "destination": "OMA",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SDF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RDU",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3559322033898305
  },
  {
    "nickname": "Continental Express",
    "destination": "DAB",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "EVV",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Comair",
    "destination": "FNT",
    "origin": "CVG",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.14583333333333334
  },
  {
    "nickname": "Jetblue",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.13636363636363635
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "SRQ",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MCO",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.12280701754385964
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "AVL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "BOS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.2441860465116279
  },
  {
    "nickname": "USAir",
    "destination": "AVP",
    "origin": "PIT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3559322033898305
  },
  {
    "nickname": "United",
    "destination": "STT",
    "origin": "IAD",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "AUS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "SAT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "American Eagle",
    "destination": "JAN",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PBI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.40816326530612246
  },
  {
    "nickname": "American",
    "destination": "SDF",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SFO",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ANC",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "LGB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TUS",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "Continental",
    "destination": "TUS",
    "origin": "IAH",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5128205128205128
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.23809523809523808
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "JAN",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "JFK",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "FLL",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SEA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MEM",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCI",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.37037037037037035
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GTR",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MCI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.3389830508474576
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BWI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.5882352941176471
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "TPA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.23529411764705882
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "MIA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "BTV",
    "origin": "ORD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AVL",
    "origin": "EWR",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "STL",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.11695906432748537
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "LGB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ALB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SDF",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "CLE",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1652892561983471
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.15503875968992248
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LBB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BHM",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MIA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.039525691699604744
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.11363636363636363
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "ORD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.40816326530612246
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DAB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BTV",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GRB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "PBI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "SAN",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BUF",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.14184397163120568
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "CLE",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "IAD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MCI",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LAX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1357142857142857
  },
  {
    "nickname": "Northwest",
    "destination": "RNO",
    "origin": "DTW",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SYR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.16379310344827586
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "PIE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.17757009345794392
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.07421875
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "BOS",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.1292517006802721
  },
  {
    "nickname": "Continental Express",
    "destination": "TUS",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.48717948717948717
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SFO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3064516129032258
  },
  {
    "nickname": "Continental",
    "destination": "SFO",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3275862068965517
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ATW",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SBN",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SYR",
    "origin": "MCO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PNS",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "CLE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.2159090909090909
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "PSP",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LGA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PBI",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "JFK",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.21839080459770116
  },
  {
    "nickname": "Continental Express",
    "destination": "HPN",
    "origin": "EWR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LEX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.6129032258064516
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SRQ",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "MCO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.35185185185185186
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "GSP",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "MSY",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RNO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SBN",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AZO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00005510009367015924,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "CLE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.15833333333333333
  },
  {
    "nickname": "Comair",
    "destination": "AZO",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00005510009367015924,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "CLT",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4418604651162791
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "LGA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2676056338028169
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MFE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 0.20689655172413793
  },
  {
    "nickname": "Continental",
    "destination": "ELP",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Comair",
    "destination": "GRB",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.20224719101123595
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "DCA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DAY",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5806451612903226
  },
  {
    "nickname": "Delta",
    "destination": "OKC",
    "origin": "ATL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MFE",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.20689655172413793
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "American Eagle",
    "destination": "DAY",
    "origin": "ORD",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OKC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "PSP",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SAT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.72
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BTV",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CAE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GSO",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TUS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.20454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "MSN",
    "origin": "EWR",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CAE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1267605633802817
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "PBI",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RIC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MEI",
    "origin": "LFT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00010440017748030171,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SBA",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00005510009367015924,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "AUS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ACY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "RIC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAN",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "STL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.0972972972972973
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DAY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "LAX",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "America West",
    "destination": "IAH",
    "origin": "LAS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BHM",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BDL",
    "origin": "CLE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.43902439024390244
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "FLL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.5806451612903226
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MSY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.29508196721311475
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MHT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MEI",
    "origin": "ATL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00010440017748030171,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "OGG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.9473684210526315
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "MHT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.9473684210526315
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RSW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "TPA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AGS",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAN",
    "origin": "DTW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATW",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00006670011339019277,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "STL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ACY",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ELP",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GRB",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GRR",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ABE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "SAV",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SBA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MHT",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "United",
    "destination": "DSM",
    "origin": "ORD",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.19318181818181818
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6071428571428571
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "BOS",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.68
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25757575757575757
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DTW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.054313099041533544
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "PBI",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.6071428571428571
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AEX",
    "origin": "GTR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CHS",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CID",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MLI",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "STL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.32075471698113206
  },
  {
    "nickname": "Northwest",
    "destination": "JAC",
    "origin": "MSP",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.1452991452991453
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "STL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "DAY",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.5862068965517241
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2786885245901639
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PNS",
    "origin": "ATL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8947368421052632
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "BHM",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SLC",
    "origin": "LGB",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SDF",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "ATA",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.12686567164179105
  },
  {
    "nickname": "American Eagle",
    "destination": "SDF",
    "origin": "DFW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CAK",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.7083333333333334
  },
  {
    "nickname": "Delta",
    "destination": "SAT",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.68
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "DCA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.07112970711297072
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PIT",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.3269230769230769
  },
  {
    "nickname": "Continental",
    "destination": "OMA",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.265625
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03469387755102041
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "JAC",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SFO",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.13821138211382114
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OMA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.25757575757575757
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PHL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1588785046728972
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PDX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ICT",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ROC",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.7727272727272727
  },
  {
    "nickname": "Continental Express",
    "destination": "GSO",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SFO",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "Comair",
    "destination": "MLI",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "IAD",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCI",
    "origin": "EWR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4358974358974359
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MKE",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.5862068965517241
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DCA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1038961038961039
  },
  {
    "nickname": "America West",
    "destination": "DSM",
    "origin": "PHX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MEM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.9411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.12030075187969924
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "TPA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.37209302325581395
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.26229508196721313
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DSM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SLC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "SFO",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "VPS",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LIT",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AUS",
    "origin": "CLE",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DFW",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8421052631578947
  },
  {
    "nickname": "Jetblue",
    "destination": "BUR",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAK",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6956521739130435
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CID",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SAV",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "TPA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.17391304347826086
  },
  {
    "nickname": "Comair",
    "destination": "MEM",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1797752808988764
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "DEN",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.21333333333333335
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "AVP",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "XNA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "PIT",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SRQ",
    "origin": "MDW",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LFT",
    "origin": "MEI",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.43243243243243246
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "LAS",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PHL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BUR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CID",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.06779661016949153
  },
  {
    "nickname": "American Eagle",
    "destination": "ICT",
    "origin": "ORD",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MCI",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJC",
    "origin": "ATL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5925925925925926
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.34782608695652173
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SLC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "VPS",
    "origin": "IAH",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.04371584699453552
  },
  {
    "nickname": "Comair",
    "destination": "TRI",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5161290322580645
  },
  {
    "nickname": "American Eagle",
    "destination": "CID",
    "origin": "ORD",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "OGG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.7272727272727273
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.0453257790368272
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DSM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SJC",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5517241379310345
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "LGA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.17582417582417584
  },
  {
    "nickname": "Continental Express",
    "destination": "DSM",
    "origin": "IAH",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2077922077922078
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.23529411764705882
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SJC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5517241379310345
  },
  {
    "nickname": "Delta",
    "destination": "LIT",
    "origin": "ATL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0949367088607595
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1282051282051282
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.32608695652173914
  },
  {
    "nickname": "Continental Express",
    "destination": "OMA",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.11278195488721804
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PHX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.12195121951219512
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SGF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "HOU",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "AVP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "JFK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.38461538461538464
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "GEG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "CLT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.15306122448979592
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.16853932584269662
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "DTW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.0949367088607595
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "STL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5172413793103449
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ORF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Comair",
    "destination": "SGF",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ORF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ACK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "HPN",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SEA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "MEM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PSP",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROA",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GRR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17045454545454544
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "STL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SJC",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.01728110599078341
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BUF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSN",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16304347826086957
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.0203527815468114
  },
  {
    "nickname": "Delta",
    "destination": "AUS",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TRI",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.5357142857142857
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.018315018315018316
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.3409090909090909
  },
  {
    "nickname": "United",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.10204081632653061
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CMH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13043478260869565
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROA",
    "origin": "CLT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BHM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.1485148514851485
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ACK",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1388888888888889
  },
  {
    "nickname": "United",
    "destination": "COS",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5357142857142857
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "FLL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IAD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Jetblue",
    "destination": "ATL",
    "origin": "LGB",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SLC",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TRI",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4838709677419355
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BHM",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1388888888888889
  },
  {
    "nickname": "Comair",
    "destination": "MDT",
    "origin": "ATL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.09615384615384616
  },
  {
    "nickname": "Jetblue",
    "destination": "DEN",
    "origin": "BOS",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09202453987730061
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.14150943396226415
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "Comair",
    "destination": "MSN",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BDL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "OMA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GTR",
    "origin": "AEX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0001073001824103101,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MDW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.40540540540540543
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "PWM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "LGA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.08875739644970414
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "MDW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.3
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.04032258064516129
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.08045977011494253
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ISP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "SDF",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "OAK",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OMA",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DSM",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.16279069767441862
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.16470588235294117
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "EVV",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Northwest",
    "destination": "BUF",
    "origin": "MSP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "FLL",
    "origin": "IND",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SAN",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.07216494845360824
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "EGE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.28
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "JAX",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MDW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.06167400881057269
  },
  {
    "nickname": "Comair",
    "destination": "PHL",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.16091954022988506
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "BOS",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.30434782608695654
  },
  {
    "nickname": "American",
    "destination": "MEM",
    "origin": "DFW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.358974358974359
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "EVV",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "EVV",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.08139534883720931
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "PIT",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2916666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "CMH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "BDL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CLT",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16091954022988506
  },
  {
    "nickname": "Comair",
    "destination": "SYR",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ABQ",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.109375
  },
  {
    "nickname": "Comair",
    "destination": "CHA",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MDW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BWI",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4117647058823529
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SCE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00004060006902011734,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "MCO",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.208955223880597
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.11666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.2978723404255319
  },
  {
    "nickname": "United",
    "destination": "GRR",
    "origin": "ORD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3111111111111111
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GRR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.3111111111111111
  },
  {
    "nickname": "Continental Express",
    "destination": "ABQ",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.10852713178294573
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "CHA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 0.5185185185185185
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.1917808219178082
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ROA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OKC",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.25925925925925924
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BUF",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MKE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OKC",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.15217391304347827
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "IAD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.35
  },
  {
    "nickname": "America West",
    "destination": "RNO",
    "origin": "LAS",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.03278688524590164
  },
  {
    "nickname": "United",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.22580645161290322
  },
  {
    "nickname": "Continental",
    "destination": "IAD",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3684210526315789
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LYH",
    "origin": "ATL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "HOU",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "TXK",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006003010205117349,
    "carriers as a percentage of route": 0.06763285024154589
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Delta",
    "destination": "RIC",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3888888888888889
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "PHX",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6086956521739131
  },
  {
    "nickname": "Northwest",
    "destination": "EGE",
    "origin": "MSP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PBI",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SYR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "DTW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "STL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.4827586206896552
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "ATL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.08484848484848485
  },
  {
    "nickname": "Continental Express",
    "destination": "TUL",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CMH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.2978723404255319
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PBI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5416666666666666
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "STL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.2708333333333333
  },
  {
    "nickname": "United",
    "destination": "MDT",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JAN",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MSY",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "JAX",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.11504424778761062
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1368421052631579
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "BOS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.1780821917808219
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ATL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.1368421052631579
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SEA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MDT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.6190476190476191
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SLC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.15476190476190477
  },
  {
    "nickname": "Comair",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.08227848101265822
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.16049382716049382
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "LGA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.2826086956521739
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "IAH",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5416666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "RDU",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SAT",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14942528735632185
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SWF",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RDU",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.2826086956521739
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AVP",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "OMA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "FLL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.41935483870967744
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MCI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SWF",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000037700064090108954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LIT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "JFK",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4482758620689655
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BOI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MDT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.1092436974789916
  },
  {
    "nickname": "Comair",
    "destination": "CMH",
    "origin": "DCA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.35135135135135137
  },
  {
    "nickname": "Continental Express",
    "destination": "HSV",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LIT",
    "origin": "MEM",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "LYH",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00004060006902011734,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "COS",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4642857142857143
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MKE",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.09352517985611511
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BUF",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.7222222222222222
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.015873015873015872
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.05078125
  },
  {
    "nickname": "ATA",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.11403508771929824
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.0948905109489051
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PHL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "DEN",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.14606741573033707
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "ISP",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DAY",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.41935483870967744
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.041401273885350316
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.4482758620689655
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.07065217391304347
  },
  {
    "nickname": "Delta",
    "destination": "BTR",
    "origin": "MOB",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PHL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Comair",
    "destination": "SCE",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000037700064090108954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.07647058823529412
  },
  {
    "nickname": "Comair",
    "destination": "EVV",
    "origin": "ATL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.13541666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "MDW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.10483870967741936
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "STL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "MCO",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "TPA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.29545454545454547
  },
  {
    "nickname": "Comair",
    "destination": "JAN",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "COS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "COS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SAT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.07602339181286549
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "BWI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.325
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "TRI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.4642857142857143
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BUR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "OKC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "MCO",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PBI",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "LAX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SEA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DCA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AGS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BOI",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SDF",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.16216216216216217
  },
  {
    "nickname": "Continental",
    "destination": "PDX",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "DFW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "DCA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "PIT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SAT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TLH",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.047058823529411764
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "ORD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "STL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.08955223880597014
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BDL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PVD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.3157894736842105
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.05084745762711865
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LEX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.3870967741935484
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ABE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DAY",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.41379310344827586
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DAY",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "HOU",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "MEM",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.09375
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "COS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RNO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SAN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2033898305084746
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ICT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MKE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.41379310344827586
  },
  {
    "nickname": "United",
    "destination": "DAY",
    "origin": "ORD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "SAT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MKE",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2222222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BOI",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SRQ",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "SFO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.04743083003952569
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "EWR",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1935483870967742
  },
  {
    "nickname": "United",
    "destination": "BOI",
    "origin": "DEN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "SAN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "IAD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.10256410256410256
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CRW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SMF",
    "origin": "IAD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Comair",
    "destination": "BGM",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DSM",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ISP",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "SFO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "LAS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TXK",
    "origin": "DFW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.05853658536585366
  },
  {
    "nickname": "Comair",
    "destination": "ICT",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SAT",
    "origin": "DEN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SDF",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SLC",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.1875
  },
  {
    "nickname": "Delta",
    "destination": "DAY",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "BOS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.10256410256410256
  },
  {
    "nickname": "USAir",
    "destination": "STT",
    "origin": "CLT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PDX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ORH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "STL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "JAX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORH",
    "origin": "JFK",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "AVP",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LAS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ABE",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "PIE",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "JFK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2682926829268293
  },
  {
    "nickname": "Jetblue",
    "destination": "SAN",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.08029197080291971
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PBI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.7857142857142857
  },
  {
    "nickname": "USAir",
    "destination": "ERI",
    "origin": "PIT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BDL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "GSO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.39285714285714285
  },
  {
    "nickname": "Delta",
    "destination": "MIA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.07913669064748201
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SAT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6875
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ONT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0718954248366013
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CMH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.02268041237113402
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PBI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "America West",
    "destination": "TUS",
    "origin": "LAS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.07534246575342465
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "OKC",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BNA",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GTF",
    "origin": "MSP",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "GSO",
    "origin": "ORD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DCA",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.2682926829268293
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GTF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "AUS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GSO",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.275
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03806228373702422
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BGM",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.014925373134328358
  },
  {
    "nickname": "Delta",
    "destination": "STL",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "SMF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.22916666666666666
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.12790697674418605
  },
  {
    "nickname": "Continental",
    "destination": "ONT",
    "origin": "IAH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ONT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "United",
    "destination": "MDW",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SRQ",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2558139534883721
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "LAS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "GSO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Delta",
    "destination": "LEX",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3235294117647059
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "BUF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "HSV",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "PIT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "AVP",
    "origin": "PHL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CRW",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ISP",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.05314009661835749
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MKE",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.23404255319148937
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.013888888888888888
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "HNL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "American Eagle",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.03313253012048193
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "SYR",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.1527777777777778
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ERI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "RIC",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.19642857142857142
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BOS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "XNA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CMH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Continental Express",
    "destination": "PBI",
    "origin": "IAH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "RSW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "PIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "CMH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BTV",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.21739130434782608
  },
  {
    "nickname": "United",
    "destination": "BOI",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BUR",
    "origin": "SFO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LGB",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FNT",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BWI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "STL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "COS",
    "origin": "DEN",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.14492753623188406
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BIL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "STL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.05917159763313609
  },
  {
    "nickname": "Continental Express",
    "destination": "BOS",
    "origin": "CLE",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.12658227848101267
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02004008016032064
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ELP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FCA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Continental",
    "destination": "BDL",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ERI",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "LGA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.37037037037037035
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.02849002849002849
  },
  {
    "nickname": "American Eagle",
    "destination": "MDT",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Northwest",
    "destination": "SLC",
    "origin": "DTW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "RSW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MLU",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BGR",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "MCO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0847457627118644
  },
  {
    "nickname": "Northwest",
    "destination": "BIL",
    "origin": "MSP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BGR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CHS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ERI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.12048192771084337
  },
  {
    "nickname": "Alaska",
    "destination": "LGB",
    "origin": "SEA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MDW",
    "origin": "DTW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.0392156862745098
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GSO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ICT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.08849557522123894
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "MIA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16393442622950818
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OAK",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.009624639076034648
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.2564102564102564
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "PDX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.04201680672268908
  },
  {
    "nickname": "America West",
    "destination": "ICT",
    "origin": "PHX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "SFO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "GEG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.5882352941176471
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RIC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "GSO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "MLU",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DSM",
    "origin": "DEN",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PBI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "CLE",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.056818181818181816
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MDT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.08403361344537816
  },
  {
    "nickname": "Delta",
    "destination": "OAK",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.15873015873015872
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CHS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "HOU",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BWI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.16393442622950818
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.08196721311475409
  },
  {
    "nickname": "Northwest",
    "destination": "FCA",
    "origin": "MSP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BUF",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "SLC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AVL",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "BNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "OKC",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SJC",
    "origin": "MDW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Comair",
    "destination": "DTW",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.21428571428571427
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MHT",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Northwest",
    "destination": "HDN",
    "origin": "MSP",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "DFW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "EGE",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "TUL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "STL",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "United",
    "destination": "TUL",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "DFW",
    "origin": "IND",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.06382978723404255
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.24324324324324326
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.05357142857142857
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CLT",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.03345724907063197
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHO",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "HSV",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "HDN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ATL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.10465116279069768
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "SEA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "LGA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SLC",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "Jetblue",
    "destination": "BQN",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "JAX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.391304347826087
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DTW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.05921052631578947
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "EGE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "TPA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.06716417910447761
  },
  {
    "nickname": "United",
    "destination": "DCA",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AVL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.08571428571428572
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "GRB",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ALB",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "American",
    "destination": "PVD",
    "origin": "DFW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "HOU",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MSY",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Continental Express",
    "destination": "SLC",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "Comair",
    "destination": "CHO",
    "origin": "CVG",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "COS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.07563025210084033
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "PHL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SJC",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5625
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "FSD",
    "origin": "CVG",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00010150017255029334,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MKE",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "Continental Express",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.04918032786885246
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ABE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.05389221556886228
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "LGA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MIA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BQN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PHX",
    "origin": "CLE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.07086614173228346
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "ATL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "RNO",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SJU",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "OMA",
    "origin": "MEM",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "ABE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Continental Express",
    "destination": "BFL",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "IND",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.21951219512195122
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.24324324324324326
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BOI",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.05232558139534884
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FSD",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00010150017255029334,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.008387698042870456
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BFL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "AUS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.060810810810810814
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TUL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BDL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SYR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "DCA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SRQ",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.20512820512820512
  },
  {
    "nickname": "Delta",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.04790419161676647
  },
  {
    "nickname": "Continental",
    "destination": "OAK",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.058394160583941604
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "RIC",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ICT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BTR",
    "origin": "DFW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.06451612903225806
  },
  {
    "nickname": "United",
    "destination": "ICT",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "RSW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "MDW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BUF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OAK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "STT",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.03587443946188341
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MDT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.38095238095238093
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "STT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "TUL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "RDU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DCA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "HOU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "GSO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.06956521739130435
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GRK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00046690079373134933,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "TYS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SJU",
    "origin": "MEM",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "AVL",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CMI",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000023200039440067048,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SDF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "Comair",
    "destination": "CMI",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000023200039440067048,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CID",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "RSW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DAY",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.07017543859649122
  },
  {
    "nickname": "Alaska",
    "destination": "DEN",
    "origin": "SEA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.047337278106508875
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DTW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.037914691943127965
  },
  {
    "nickname": "Continental",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.04371584699453552
  },
  {
    "nickname": "Comair",
    "destination": "AVP",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PDX",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MTJ",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.5333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "TLH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AVL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "CLE",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.17391304347826086
  },
  {
    "nickname": "American",
    "destination": "SDF",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "America West",
    "destination": "ELP",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.14035087719298245
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "JFK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "MIA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "Comair",
    "destination": "HPN",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "GSP",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SJU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.04790419161676647
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SRQ",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SAT",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.32
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SLC",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "Continental Express",
    "destination": "MTJ",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7272727272727273
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ORF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.10666666666666667
  },
  {
    "nickname": "Continental Express",
    "destination": "GRK",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00046980079866135773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SJU",
    "origin": "MDW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.42105263157894735
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "XNA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CLT",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.06611570247933884
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "MIA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.049689440993788817
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "SJU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "LGA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1568627450980392
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "DFW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.05673758865248227
  },
  {
    "nickname": "Northwest",
    "destination": "BUF",
    "origin": "DTW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "MEM",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "BOS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.32
  },
  {
    "nickname": "Continental Express",
    "destination": "AUS",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03065134099616858
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "JFK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORF",
    "origin": "EWR",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.11428571428571428
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CAK",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.30434782608695654
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.026515151515151516
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SJU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SHV",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "CAK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.2916666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "TPA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "LGA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.024822695035460994
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.030434782608695653
  },
  {
    "nickname": "Comair",
    "destination": "SHV",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.025547445255474453
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "SFO",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.1794871794871795
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "DCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MTJ",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "Comair",
    "destination": "HOU",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "DCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "IND",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1590909090909091
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "JAX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "OMA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.08641975308641975
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PHX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SMF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "XNA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "TLH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "OAK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.043209876543209874
  },
  {
    "nickname": "Northwest",
    "destination": "GTF",
    "origin": "FCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ISP",
    "origin": "ATL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CID",
    "origin": "DFW",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.4375
  },
  {
    "nickname": "Continental",
    "destination": "MTJ",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.16279069767441862
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HPN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SAT",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.28
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BTV",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROC",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TLH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FCA",
    "origin": "GTF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "RSW",
    "origin": "BOS",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.12727272727272726
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08139534883720931
  },
  {
    "nickname": "Continental Express",
    "destination": "LIT",
    "origin": "EWR",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "STL",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07692307692307693
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "LAX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BNA",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07954545454545454
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PVD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "GEG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.4117647058823529
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "STL",
    "origin": "ORD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.04093567251461988
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "SJU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "STL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.020710059171597635
  },
  {
    "nickname": "United",
    "destination": "LNK",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "RSW",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.12727272727272726
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LNK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "AUS",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAK",
    "origin": "ATL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CMH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "ISP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ORF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.024822695035460994
  },
  {
    "nickname": "Jetblue",
    "destination": "PHX",
    "origin": "JFK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5833333333333334
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.058333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PIT",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.11290322580645161
  },
  {
    "nickname": "Continental Express",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.0958904109589041
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ROA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030973451327433628
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "IAD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.13725490196078433
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TOL",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.20588235294117646
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PWM",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.043209876543209874
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "TOL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 0.20588235294117646
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "IND",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "GSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "PHL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.0594059405940594
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.07058823529411765
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IAD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "America West",
    "destination": "OMA",
    "origin": "LAS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.057692307692307696
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CAK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MSY",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.08108108108108109
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "EVV",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "American",
    "destination": "BUF",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.011560693641618497
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0410958904109589
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "GUC",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00002030003451005867,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ABE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ISP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BGR",
    "origin": "CVG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0392156862745098
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BGR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SJU",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "SLC",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "MSY",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CLL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013166022382238049,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "JAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "LIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ORF",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CRW",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SRQ",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RDU",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Alaska",
    "destination": "DEN",
    "origin": "PDX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.04580152671755725
  },
  {
    "nickname": "Northwest",
    "destination": "GRB",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "CVG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FAI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SAT",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.08955223880597014
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CRW",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DSM",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLL",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013079022234337798,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IND",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ALB",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RNO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.039735099337748346
  },
  {
    "nickname": "Northwest",
    "destination": "JFK",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "GEG",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MYR",
    "origin": "EWR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.05309734513274336
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MYR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "PSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "GEG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "XNA",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.011627906976744186
  },
  {
    "nickname": "Comair",
    "destination": "DSM",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.03896103896103896
  },
  {
    "nickname": "Delta",
    "destination": "OGG",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SAT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.07792207792207792
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.0379746835443038
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "XNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Continental Express",
    "destination": "PWM",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FAI",
    "origin": "MSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RNO",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MCI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.030927835051546393
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.01834862385321101
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.04225352112676056
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "MDW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "SNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.03389830508474576
  },
  {
    "nickname": "Comair",
    "destination": "GRR",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.07692307692307693
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SMF",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CRW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "PHL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.037267080745341616
  },
  {
    "nickname": "Comair",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.16216216216216217
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "RDU",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0335195530726257
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.10344827586206896
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "BWI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MCI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.2222222222222222
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RSW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "American Eagle",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.019672131147540985
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0967741935483871
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SAT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.01764705882352941
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.020761245674740483
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GEG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.05309734513274336
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "AVP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "OGG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.2727272727272727
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.030612244897959183
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.06976744186046512
  },
  {
    "nickname": "Continental Express",
    "destination": "SRQ",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SRQ",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "DCA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "United",
    "destination": "GEG",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "AUS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "TPA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.03468208092485549
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "SDF",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "TLH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "LAX",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.11320754716981132
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CRW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "FLL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MLU",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MTJ",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ABY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000017400029580050285,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IAD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ANC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BIS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "HLN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.021367521367521368
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "FNT",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BDL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "HNL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Continental Express",
    "destination": "MSY",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AUS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.07936507936507936
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "LEX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OKC",
    "origin": "DEN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.08620689655172414
  },
  {
    "nickname": "Northwest",
    "destination": "SJU",
    "origin": "MSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "MCO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.05434782608695652
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TUS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Delta",
    "destination": "HOU",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "STT",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "GEG",
    "origin": "LAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MTJ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RSW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "TPA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ILM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SRQ",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Comair",
    "destination": "SDF",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "EUG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATW",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00006670011339019277,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.029940119760479042
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1282051282051282
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SAV",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OKC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.02145922746781116
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PVD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4166666666666667
  },
  {
    "nickname": "American Eagle",
    "destination": "SAV",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "XNA",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MTJ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.06578947368421052
  },
  {
    "nickname": "Continental Express",
    "destination": "TPA",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "PHL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "HOU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BOS",
    "origin": "EWR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03759398496240601
  },
  {
    "nickname": "Comair",
    "destination": "PHL",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SYR",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.08620689655172414
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02717391304347826
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.03496503496503497
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.021645021645021644
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BUF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.2777777777777778
  },
  {
    "nickname": "Continental Express",
    "destination": "SAT",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MTJ",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OKC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ILM",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.15625
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.03048780487804878
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.023255813953488372
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ORF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.06493506493506493
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "PWM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SNA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "PWM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.0641025641025641
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SJU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.05747126436781609
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "IND",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "SDF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PIT",
    "origin": "MIA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.1724137931034483
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.025906735751295335
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "SJC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ABQ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.060240963855421686
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "CMH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.050505050505050504
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Comair",
    "destination": "HLN",
    "origin": "SLC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SEA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SNA",
    "origin": "PHL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MEM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.013404825737265416
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IAD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "GSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.09259259259259259
  },
  {
    "nickname": "Delta",
    "destination": "RNO",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "GRR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.11627906976744186
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "STT",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SMF",
    "origin": "PDX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "Jetblue",
    "destination": "SJC",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "ROC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.22727272727272727
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ATW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "JAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "SAN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.04716981132075472
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RNO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BIS",
    "origin": "MSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.18518518518518517
  },
  {
    "nickname": "Continental",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.0364963503649635
  },
  {
    "nickname": "Comair",
    "destination": "BUF",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MLU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "HSV",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CMH",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3125
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "BUF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.07575757575757576
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ABY",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000017400029580050285,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.017605633802816902
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PVD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ROC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.020202020202020204
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.015384615384615385
  },
  {
    "nickname": "American Eagle",
    "destination": "MTJ",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "America West",
    "destination": "ATL",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.03669724770642202
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "ANC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SJC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.02185792349726776
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CRP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "BUF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DAY",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.024691358024691357
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.05194805194805195
  },
  {
    "nickname": "Comair",
    "destination": "MDW",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.06349206349206349
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "PIE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "GSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.028985507246376812
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "STT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "SAV",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CRW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.05263157894736842
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "HOU",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "RDU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "United",
    "destination": "GUC",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.06349206349206349
  },
  {
    "nickname": "United",
    "destination": "EUG",
    "origin": "SFO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SMF",
    "origin": "SLC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "BWI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.01990049751243781
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "SFO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Delta",
    "destination": "FAI",
    "origin": "ANC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.05
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LAX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.020512820512820513
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DAB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Comair",
    "destination": "CRW",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Continental",
    "destination": "DAB",
    "origin": "EWR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "American",
    "destination": "DRO",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "TYS",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.02247191011235955
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "SEA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BDL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.012121212121212121
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.0380952380952381
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "SDF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORF",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MTJ",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.03508771929824561
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "MLB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "PHL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.009685230024213076
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PDX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.0380952380952381
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Jetblue",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.020833333333333332
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "XNA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.043010752688172046
  },
  {
    "nickname": "America West",
    "destination": "BUR",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.010610079575596816
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TYS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.01834862385321101
  },
  {
    "nickname": "Comair",
    "destination": "ABE",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.035398230088495575
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "MDT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PVD",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "COS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.03508771929824561
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "GSO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.06896551724137931
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "America West",
    "destination": "GEG",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "Comair",
    "destination": "MIA",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "RDU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HVN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DRO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "BUR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.010309278350515464
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.009779951100244499
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SMF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.03007518796992481
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "HNL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "RIC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "CAE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.05970149253731343
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "FNT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.01990049751243781
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DAB",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "BWI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.008988764044943821
  },
  {
    "nickname": "USAir",
    "destination": "HPN",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "TPA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "HPN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.026143790849673203
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.015748031496062992
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "HVN",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PDX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "DAL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SEA",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "FAI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 0.05128205128205128
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "COS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Continental",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.023391812865497075
  },
  {
    "nickname": "Comair",
    "destination": "BTV",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.13793103448275862
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "PHL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.05063291139240506
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "HOU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.025974025974025976
  },
  {
    "nickname": "Jetblue",
    "destination": "PDX",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DAB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Continental",
    "destination": "CRP",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.042105263157894736
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.10810810810810811
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "IAD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Continental Express",
    "destination": "RSW",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.05063291139240506
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "TUS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.03389830508474576
  },
  {
    "nickname": "Continental Express",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MYR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "BWI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.027522935779816515
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HDN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.017964071856287425
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PBI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.21428571428571427
  },
  {
    "nickname": "Comair",
    "destination": "FWA",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.05357142857142857
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.010238907849829351
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02054794520547945
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.013761467889908258
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HTS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PVD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.04225352112676056
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MOB",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Continental Express",
    "destination": "SBN",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MRY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.02631578947368421
  },
  {
    "nickname": "United",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.008021390374331552
  },
  {
    "nickname": "America West",
    "destination": "MCI",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.013215859030837005
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "MEM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SYR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Continental Express",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.025423728813559324
  },
  {
    "nickname": "Continental Express",
    "destination": "PBI",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PSE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MRY",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "PHL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.05454545454545454
  },
  {
    "nickname": "United",
    "destination": "BIL",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ATL",
    "origin": "PHX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.06521739130434782
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.01485148514851485
  },
  {
    "nickname": "USAir",
    "destination": "STX",
    "origin": "CLT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2727272727272727
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.02912621359223301
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SBN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.006185567010309278
  },
  {
    "nickname": "American",
    "destination": "SMF",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.02112676056338028
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "OMA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.03529411764705882
  },
  {
    "nickname": "Comair",
    "destination": "DFW",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MKE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "Comair",
    "destination": "HTS",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.011811023622047244
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CAE",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.011673151750972763
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Continental",
    "destination": "MHT",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.09375
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.036585365853658534
  },
  {
    "nickname": "Comair",
    "destination": "BGR",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.036585365853658534
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "SAT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.06976744186046512
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "RSW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "VCT",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BIL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SYR",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "VCT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DSM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "EYW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Jetblue",
    "destination": "PSE",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TOL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MDW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DFW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Continental",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.009771986970684038
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "United",
    "destination": "BUR",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CRW",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SHV",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SRQ",
    "origin": "MSP",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "SHV",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.061224489795918366
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MKE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.08823529411764706
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "America West",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0069767441860465115
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GRR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MSY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SJU",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SAN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "PWM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "TUS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MHT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MLB",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "MEM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.018072289156626505
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SEA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROA",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.024793388429752067
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "ISP",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.008823529411764706
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "TOL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "GSO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CRW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0375
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "FWA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.01744186046511628
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.008130081300813009
  },
  {
    "nickname": "ATA",
    "destination": "EWR",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.009433962264150943
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJC",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TOL",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORF",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "MIA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BWI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "AUS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.03
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BDL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "GSO",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.05084745762711865
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.03896103896103896
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Continental",
    "destination": "SRQ",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "SRQ",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MYR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GRR",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "RSW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.006060606060606061
  },
  {
    "nickname": "Comair",
    "destination": "TOL",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CLT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.023809523809523808
  },
  {
    "nickname": "Continental Express",
    "destination": "HDN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "IAD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "EYW",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.014705882352941176
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "PHL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.019867549668874173
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MOB",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 0.046875
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.0967741935483871
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MHT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "Comair",
    "destination": "TPA",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.06521739130434782
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "DCA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.014218009478672985
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "HOU",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SAN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "DFW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.01744186046511628
  },
  {
    "nickname": "Continental",
    "destination": "HOU",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MKE",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ORF",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "Continental",
    "destination": "MHT",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.007905138339920948
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.006172839506172839
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CHS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.02
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "FNT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RSW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.013071895424836602
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MTJ",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SJU",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.007905138339920948
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.005115089514066497
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "JAN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.006153846153846154
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TRI",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.011764705882352941
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "PDX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.021505376344086023
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.017543859649122806
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BNA",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03278688524590164
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "JAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PWM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.019801980198019802
  },
  {
    "nickname": "Delta",
    "destination": "PNS",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.006802721088435374
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.044444444444444446
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "RSW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.022727272727272728
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MYR",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "SBN",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.00625
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SAT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.05714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "SLC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BGM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.020202020202020204
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "PBI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.0196078431372549
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.007220216606498195
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ILM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "KOA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.04
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "MLB",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.015037593984962405
  },
  {
    "nickname": "Northwest",
    "destination": "JAC",
    "origin": "BIL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "BOS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LNK",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ICT",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.028985507246376812
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MHT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.05
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "SFO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.014925373134328358
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "IAD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "CMH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BTR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.03125
  },
  {
    "nickname": "American",
    "destination": "MDW",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.010810810810810811
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.017241379310344827
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "JFK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.008849557522123894
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.007692307692307693
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "PIE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORF",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.017543859649122806
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.014388489208633094
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "AUS",
    "origin": "MSP",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DSM",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DTW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.016129032258064516
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "OMA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.02531645569620253
  },
  {
    "nickname": "Continental",
    "destination": "MYR",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "MSP",
    "origin": "SLC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.011299435028248588
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BGM",
    "origin": "PIT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LNK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DSM",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.021505376344086023
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.021052631578947368
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "USAir",
    "destination": "CAK",
    "origin": "PIT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MDW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.010752688172043012
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "BGR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "ORF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BTR",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.006578947368421052
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "FNT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BUF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "ILM",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TLH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SAT",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "PHX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.02247191011235955
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TLH",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "PNS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "MSY",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "BQK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000005800009860016762,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.011363636363636364
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.029850746268656716
  },
  {
    "nickname": "Comair",
    "destination": "TPA",
    "origin": "LEX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PNS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSY",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.02531645569620253
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.007547169811320755
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.007751937984496124
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "SFO",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.016666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.00847457627118644
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JAN",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "United",
    "destination": "MTJ",
    "origin": "DEN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DSM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Continental",
    "destination": "SLC",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ABQ",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PBI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0076045627376425855
  },
  {
    "nickname": "Continental",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.013333333333333334
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.0425531914893617
  },
  {
    "nickname": "Continental",
    "destination": "RIC",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CAK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "SBN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.004081632653061225
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "BOS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "ANC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "MEM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "TRI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "BWI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.008438818565400843
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "SAN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.0078125
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "MDW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ICT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TRI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.0037313432835820895
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "BQK",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000005800009860016762,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CHS",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.046511627906976744
  },
  {
    "nickname": "American",
    "destination": "KOA",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.023255813953488372
  },
  {
    "nickname": "Comair",
    "destination": "MKE",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.058823529411764705
  },
  {
    "nickname": "Northwest",
    "destination": "BIL",
    "origin": "JAC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "RDU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Comair",
    "destination": "RSW",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.016260162601626018
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.008968609865470852
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "ORF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "TPA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DRO",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MTJ",
    "origin": "LAX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PFN",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PFN",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ROC",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.02127659574468085
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "SHV",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.002770083102493075
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "HPN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.01
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.022727272727272728
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "STL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.018518518518518517
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.02631578947368421
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.004830917874396135
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0037174721189591076
  },
  {
    "nickname": "Delta",
    "destination": "DAB",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ILE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DCA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MKE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.02127659574468085
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ONT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "CMH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.03333333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "BZN",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00017690030073051123,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PHF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.008547008547008548
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FNT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PDX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.009615384615384616
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0035087719298245615
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SAT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.0032679738562091504
  },
  {
    "nickname": "Continental",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.0045662100456621
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ROC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.015384615384615385
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0035087719298245615
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "HTS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "FLO",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000002900004930008381,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SJT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006467010993918689,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "CLE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.008333333333333333
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "LSE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DAB",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MLB",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.0136986301369863
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.0038461538461538464
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.0038910505836575876
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "MIA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.011627906976744186
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.006896551724137931
  },
  {
    "nickname": "Northwest",
    "destination": "TVC",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000005800009860016762,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.023809523809523808
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.006211180124223602
  },
  {
    "nickname": "Northwest",
    "destination": "EGE",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PNS",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ALB",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "MAF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 0.009259259259259259
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.006060606060606061
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "FLO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.017241379310344827
  },
  {
    "nickname": "America West",
    "destination": "PSP",
    "origin": "PHX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "LGA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "PBI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AUS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SRQ",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "Continental",
    "destination": "JFK",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MYR",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.03333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DEN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.002364066193853428
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PIT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.00847457627118644
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BDL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.012195121951219513
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "DCA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.034482758620689655
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ANC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ABY",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000017400029580050285,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.007633587786259542
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MSY",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Continental Express",
    "destination": "ONT",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "American Eagle",
    "destination": "CMH",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.008333333333333333
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MYR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "OKC",
    "origin": "TUL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.006172839506172839
  },
  {
    "nickname": "Comair",
    "destination": "VPS",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.002680965147453083
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "VPS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ROC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OKC",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SBN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.125
  },
  {
    "nickname": "Continental Express",
    "destination": "BTR",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BUR",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "JAN",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LSE",
    "origin": "ORD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000002900004930008381,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "ORD",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.00392156862745098
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "PBI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PFN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0022562038355465205,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "GSO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "LAX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.008771929824561403
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.0030864197530864196
  },
  {
    "nickname": "Comair",
    "destination": "DAB",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "RNO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MEM",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Northwest",
    "destination": "MSN",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ABQ",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.004739336492890996
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "STL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "SAT",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.0033333333333333335
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CRP",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTV",
    "origin": "HPN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BUF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Alaska",
    "destination": "DFW",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.003968253968253968
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "LEX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ITH",
    "origin": "PIT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000002900004930008381,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PSP",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 0.016129032258064516
  },
  {
    "nickname": "Comair",
    "destination": "AGS",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0014347202295552368
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ELP",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.010526315789473684
  },
  {
    "nickname": "Delta",
    "destination": "MHT",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Comair",
    "destination": "MYR",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "GSO",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "GPT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.02631578947368421
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MSN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SEA",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.006024096385542169
  },
  {
    "nickname": "Comair",
    "destination": "TRI",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.001869158878504673
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.0136986301369863
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "SHV",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 0.0028011204481792717
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.007246376811594203
  },
  {
    "nickname": "Comair",
    "destination": "TPA",
    "origin": "RIC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TVC",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000005800009860016762,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BUF",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Delta",
    "destination": "BUF",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "ATA",
    "destination": "MCO",
    "origin": "SJU",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BRO",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0002726004634207878,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.010638297872340425
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TVC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000005800009860016762,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DSM",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "DEN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.025
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "PHX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.009433962264150943
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "OMA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.024390243902439025
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "MYR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.002583979328165375
  },
  {
    "nickname": "Jetblue",
    "destination": "RSW",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "USAir",
    "destination": "STT",
    "origin": "PHL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END as "nickname__5",
    CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END as "destination__5",
    CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END as "origin__5",
    CASE WHEN group_set=5 THEN
      COUNT(1)
      END as "flight_count__5",
    MAX((CASE WHEN group_set=1 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT(1)
      END)) OVER () as "carrier as a percent of all flights__5",
    MAX((CASE WHEN group_set=2 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT(1)
      END)) OVER () as "destination as a percent of all flights__5",
    MAX((CASE WHEN group_set=3 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT(1)
      END)) OVER () as "origin as a percent of all flights__5",
    (CASE WHEN group_set=5 THEN
      COUNT(1)
      END)*1.0/MAX((CASE WHEN group_set=4 THEN
      COUNT(1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      base."destination"
      END, CASE WHEN group_set IN (5,3,4) THEN
      base."origin"
      END) as "carriers as a percentage of route__5"
  FROM '../data/flights.parquet' as base
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON base."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,5,1)) as group_set  ) as group_set
  GROUP BY 1,2,3,4
)
SELECT
  "nickname__5" as "nickname",
  "destination__5" as "destination",
  "origin__5" as "origin",
  MAX(CASE WHEN group_set=5 THEN "flight_count__5" END) as "flight_count",
  MAX(CASE WHEN group_set=5 THEN "carrier as a percent of all flights__5" END) as "carrier as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "destination as a percent of all flights__5" END) as "destination as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "origin as a percent of all flights__5" END) as "origin as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "carriers as a percentage of route__5" END) as "carriers as a percentage of route"
FROM __stage0
WHERE group_set NOT IN (0,1,2,3,4)
GROUP BY 1,2,3
ORDER BY 4 desc NULLS LAST