Think and answer the question step by step according to the SQL thought and the decompose subquestion of the question based on the SQL and table contents. Ensure the final answer format is only "Final Answer: Yes/No" form, no other form. And ensure the final answer is only a Yes or No, without any explanation.

#
Table:
/*
table caption : cnbc prime 's the profit 200
| year | date | driver | team | manufacturer | laps | - | race time | average speed (mph) |
|------:|-------:|:-------- |:----------- |:--------- |-----:|------------ :|----------:|-------- ----:|
| 2000 | may 13 | tim fedewa | cicci - welliver racing | chevrolet | 200 | 211.6 (340.537) | 2:22:04  | 89.366 |
| 2001 | may 12 | jason keller | ppc racing | ford | 200 | 211.6 (340.537) | 1:56:47  | 108.714 |
| 2002 | may 11 | bobby hamilton jr| team rensi motorsports | ford | 200 | 211.6 (340.537) | 1:55:02  | 110.368 |
| 2003 | july 19 | david green | brewco motorsports | pontiac | 200 | 211.6 (340.537) | 1:57:33  | 108.005 |
| 2004 | july 24 | matt kenseth | reiser enterprises | ford | 200 | 211.6 (340.537) | 2:15:29  | 93.709 |
| 2005 | july 16 | martin truex jr| dale earnhardt, inc | chevrolet | 201 | 212.658 (342.239) | 2:18:33  | 92.093 |
| 2006 | july 15 | carl edwards | roush racing | ford | 200 | 211.6 (340.537) | 2:00:12 | 105.624 |
| 2007 | july 30 | kevin harvick | richard childress racing | chevrolet | 200 | 211.6 (340.537) | 2:06:07 | 100.669 |
| 2008 | july 28 | tony stewart | joe gibbs racing | toyota | 200 | 211.6 (340.537) | 1:56:27 | 109.025 |
| 2009 | july 27 | kyle busch | joe gibbs racing | toyota | 200 | 211.6 (340.537) | 1:53:26 | 111.925 |
| 2010 | june 26 | kyle busch | joe gibbs racing | toyota | 200 | 211.6 (340.537) | 1:54:43 | 110.673 |
| 2011 | july 16 | kyle busch | joe gibbs racing | toyota | 206 | 217.948 (350.753) | 2:21:48 | 92.221 |
| 2012 | july 14 | brad keselowski | penske racing | dodge | 200 | 211.6 (340.537) | 1:58:46 | 106.899 |
*/

statement:
on june 26th, 2010 kyle busch drove a total of 211.6 miles at an average speed of 110.673 miles per hour

SQL:
SELECT year, date, driver, laps, race_time, average_speed FROM race_results WHERE date = '2010-06-26' AND driver = 'kyle busch' AND laps = 200 AND average_speed = 110.673;

Decompose:
1. Check whether driver kyle busch data is 2010-06-26.
2. Check whether driver kyle busch laps is 200.
3. Check whether driver kyle busch average+speed is 110.673.

Answer:
kyle busch drove on june 26th, 2010, yes.
kyle busch drove a total of 211.6 miles on june 26th, 2010, right.
kyle busch drove at an average speed of 110.673 miles per hour on june 26th, 2010, right.
Final Answer: Yes
#

#
Table:
/*
table caption : {TITLE}
{TABLE}
*/

Question:
{QUESTION}

SQL:
{SQL}

Decompose:
{DECOMPOSE}

Answer: