answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT result FROM table_name_87 WHERE date = "9 october 2012"
CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)
what is the result on 9 october 2012?
SELECT score FROM table_name_32 WHERE venue = "stade général seyni kountché, niamey" AND competition = "friendly" AND date = "9 october 2012"
CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)
what is the score when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?
SELECT result FROM table_name_54 WHERE venue = "stade général seyni kountché, niamey" AND competition = "friendly" AND date = "9 october 2012"
CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)
what is the result when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?
SELECT competition FROM table_name_75 WHERE date = "10 august 2011"
CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)
what is the competition on 10 august 2011?
SELECT date FROM table_name_10 WHERE venue = "stade général seyni kountché , niamey"
CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)
what is the date when the venue is stade général seyni kountché , niamey?
SELECT place FROM table_name_7 WHERE athlete = "manfred kokot"
CREATE TABLE table_name_7 (place VARCHAR, athlete VARCHAR)
What place has manfred kokot as the athlete?
SELECT athlete FROM table_name_73 WHERE place = "reno"
CREATE TABLE table_name_73 (athlete VARCHAR, place VARCHAR)
What athlete has reno as the place?
SELECT campus FROM table_name_12 WHERE year_opened = "1970"
CREATE TABLE table_name_12 (campus VARCHAR, year_opened VARCHAR)
What campus opened in 1970?
SELECT year_opened FROM table_name_76 WHERE students = "na" AND size = "10 acres"
CREATE TABLE table_name_76 (year_opened VARCHAR, students VARCHAR, size VARCHAR)
What year was the school opened that has a size of 10 acres and students of na?
SELECT location FROM table_name_86 WHERE size = "245 acres"
CREATE TABLE table_name_86 (location VARCHAR, size VARCHAR)
What location was the campus that has a size of 245 acres?
SELECT campus FROM table_name_79 WHERE year_opened = "1977"
CREATE TABLE table_name_79 (campus VARCHAR, year_opened VARCHAR)
What campus was opened in 1977?
SELECT location FROM table_name_57 WHERE students = "na" AND year_opened = "2005"
CREATE TABLE table_name_57 (location VARCHAR, students VARCHAR, year_opened VARCHAR)
What location was the campus opened in 2005 with students listed as na?
SELECT type FROM table_name_14 WHERE rank < 70 AND province = "british columbia" AND capacity___mw__ > 2 OFFSET 480
CREATE TABLE table_name_14 (type VARCHAR, capacity___mw__ VARCHAR, rank VARCHAR, province VARCHAR)
what is the type when the rank is smaller than 70, the province is british columbia and the capacity (mw) is more than 2,480?
SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = "newfoundland and labrador"
CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)
what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?
SELECT MIN(rank) FROM table_name_67 WHERE type = "hydro" AND name = "grand rapids generating station" AND capacity___mw__ > 479
CREATE TABLE table_name_67 (rank INTEGER, capacity___mw__ VARCHAR, type VARCHAR, name VARCHAR)
what is the lowest rank when the type is hydro, the name is grand rapids generating station and the capacity (mw) is more than 479?
SELECT province FROM table_name_42 WHERE rank > 24 AND name = "laforge-2"
CREATE TABLE table_name_42 (province VARCHAR, rank VARCHAR, name VARCHAR)
what is the province when the rank is higher than 24 and the name is laforge-2?
SELECT name FROM table_name_15 WHERE type = "hydro" AND capacity___mw__ < 478 AND rank > 85 AND province = "quebec"
CREATE TABLE table_name_15 (name VARCHAR, province VARCHAR, rank VARCHAR, type VARCHAR, capacity___mw__ VARCHAR)
what is the name when the type is hydro, the capacity (mw) is less than 478, the rank is more than 85 and the province is quebec?
SELECT COUNT(year) FROM table_name_60 WHERE team = "toyota team tom's" AND laps > 64
CREATE TABLE table_name_60 (year VARCHAR, team VARCHAR, laps VARCHAR)
How many years have toyota team tom's as the team, with Laps greater than 64?
SELECT round FROM table_name_91 WHERE date = "11/11/1992"
CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)
What round was on 11/11/1992?
SELECT SUM(against) FROM table_name_82 WHERE date = "08/12/1992"
CREATE TABLE table_name_82 (against INTEGER, date VARCHAR)
What is the total against on 08/12/1992?
SELECT venue FROM table_name_6 WHERE date = "24/11/1992"
CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)
What is the venue of 24/11/1992?
SELECT round FROM table_name_37 WHERE against < 1
CREATE TABLE table_name_37 (round VARCHAR, against INTEGER)
What round has less than 1 against?
SELECT COUNT(gold) FROM table_name_64 WHERE nation = "germany (ger)" AND rank < 15
CREATE TABLE table_name_64 (gold VARCHAR, nation VARCHAR, rank VARCHAR)
How many gold medals for germany (GER) having a rank less than 15?
SELECT MAX(silver) FROM table_name_89 WHERE rank > 5 AND bronze > 2
CREATE TABLE table_name_89 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
How many silver medals when the bronze is more than 2 and having a rank more than 5?
SELECT AVG(silver) FROM table_name_86 WHERE bronze < 0
CREATE TABLE table_name_86 (silver INTEGER, bronze INTEGER)
What's the average number of silver medals when bronze is less than 0?
SELECT AVG(silver) FROM table_name_44 WHERE nation = "germany (ger)" AND bronze > 3
CREATE TABLE table_name_44 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
What's the average number of silver medals for germany (GER) having more than 3 bronze?
SELECT notes FROM table_name_85 WHERE time = "6:31.16"
CREATE TABLE table_name_85 (notes VARCHAR, time VARCHAR)
What are the notes for 6:31.16?
SELECT rowers FROM table_name_64 WHERE time = "6:29.56"
CREATE TABLE table_name_64 (rowers VARCHAR, time VARCHAR)
What rowers have a 6:29.56 time?
SELECT time FROM table_name_43 WHERE notes = "fb" AND country = "canada"
CREATE TABLE table_name_43 (time VARCHAR, notes VARCHAR, country VARCHAR)
What is the time with FB notes for Canada?
SELECT country FROM table_name_38 WHERE time = "6:49.28"
CREATE TABLE table_name_38 (country VARCHAR, time VARCHAR)
What country has a time of 6:49.28?
SELECT AVG(tries_for) FROM table_name_69 WHERE points_against > 87 AND tries_against < 28 AND points_diff = "+63"
CREATE TABLE table_name_69 (tries_for INTEGER, points_diff VARCHAR, points_against VARCHAR, tries_against VARCHAR)
Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?
SELECT MIN(points_for) FROM table_name_38 WHERE points_against < 93 AND tries_for > 25
CREATE TABLE table_name_38 (points_for INTEGER, points_against VARCHAR, tries_for VARCHAR)
Which Points for has Points against smaller than 93, and Tries for larger than 25?
SELECT MAX(tries_for) FROM table_name_12 WHERE points_against < 124 AND points_for < 241 AND tries_against < 11
CREATE TABLE table_name_12 (tries_for INTEGER, tries_against VARCHAR, points_against VARCHAR, points_for VARCHAR)
Which Tries for has Points against smaller than 124, and Points for smaller than 241, and Tries against smaller than 11?
SELECT COUNT(tries_against) FROM table_name_48 WHERE team = "dinamo bucureşti" AND tries_for < 19
CREATE TABLE table_name_48 (tries_against VARCHAR, team VARCHAR, tries_for VARCHAR)
How many Tries against have a Team of dinamo bucureşti, and Tries for smaller than 19?
SELECT COUNT(week) FROM table_name_59 WHERE attendance = 48 OFFSET 667
CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)
What week had attendance of 48,667?
SELECT song FROM table_name_72 WHERE draw < 4 AND percentage = "32.22%"
CREATE TABLE table_name_72 (song VARCHAR, draw VARCHAR, percentage VARCHAR)
What Song has a Draw of less than 4 with a Percentage of 32.22%?
SELECT artist FROM table_name_50 WHERE place < 3 AND percentage = "38.60%"
CREATE TABLE table_name_50 (artist VARCHAR, place VARCHAR, percentage VARCHAR)
What Artist has a Place of 3 or less with a Percentage of 38.60%?
SELECT AVG(place) FROM table_name_54 WHERE artist = "monika kirovska" AND draw < 1
CREATE TABLE table_name_54 (place INTEGER, artist VARCHAR, draw VARCHAR)
What is the Place of Draw 1 by Artist Monika Kirovska?
SELECT MAX(byes) FROM table_name_55 WHERE wins > 11 AND against > 1118 AND hampden_fl = "terang-mortlake"
CREATE TABLE table_name_55 (byes INTEGER, hampden_fl VARCHAR, wins VARCHAR, against VARCHAR)
What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?
SELECT AVG(wins) FROM table_name_91 WHERE hampden_fl = "south warrambool"
CREATE TABLE table_name_91 (wins INTEGER, hampden_fl VARCHAR)
How many wins did South Warrambool have?
SELECT AVG(byes) FROM table_name_50 WHERE wins > 16
CREATE TABLE table_name_50 (byes INTEGER, wins INTEGER)
How many byes when there are more than 16 wins?
SELECT MIN(byes) FROM table_name_3 WHERE against = 1946 AND wins > 2
CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, wins VARCHAR)
What is the least amount of Byes when there are more than 2 wins and 1946 against?
SELECT AVG(wins) FROM table_name_59 WHERE draws < 1 AND losses > 4
CREATE TABLE table_name_59 (wins INTEGER, draws VARCHAR, losses VARCHAR)
How many wins when the draws are less than 1 and more than 4 losses?
SELECT MIN(pop__2010_) FROM table_name_25 WHERE geo_id = 3805373380 AND water__sqmi_ < 5.729
CREATE TABLE table_name_25 (pop__2010_ INTEGER, geo_id VARCHAR, water__sqmi_ VARCHAR)
What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?
SELECT MIN(geo_id) FROM table_name_29 WHERE longitude = -102.158045 AND water__sqmi_ > 0.979
CREATE TABLE table_name_29 (geo_id INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR)
What is the lowest GEO ID for the longitude of -102.158045 and the water in square miles larger than 0.979?
SELECT AVG(ansi_code) FROM table_name_39 WHERE township = "sherman" AND water__sqmi_ < 0.005
CREATE TABLE table_name_39 (ansi_code INTEGER, township VARCHAR, water__sqmi_ VARCHAR)
What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?
SELECT AVG(longitude) FROM table_name_46 WHERE water__sqmi_ = 0.093 AND geo_id > 3808174460
CREATE TABLE table_name_46 (longitude INTEGER, water__sqmi_ VARCHAR, geo_id VARCHAR)
What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?
SELECT country FROM table_name_86 WHERE author = "based on sophocles and euripides"
CREATE TABLE table_name_86 (country VARCHAR, author VARCHAR)
Which Country's Author is based on Sophocles and Euripides?
SELECT author FROM table_name_93 WHERE company = "ruth kanner theatre group"
CREATE TABLE table_name_93 (author VARCHAR, company VARCHAR)
Which Author's Company is Ruth Kanner Theatre Group?
SELECT play FROM table_name_98 WHERE country = "cyprus" AND company = "magdalena zira theatre"
CREATE TABLE table_name_98 (play VARCHAR, country VARCHAR, company VARCHAR)
Which Play is from Cyprus, from the Company Magdalena Zira Theatre?
SELECT country FROM table_name_82 WHERE play = "electra and orestes, the trial"
CREATE TABLE table_name_82 (country VARCHAR, play VARCHAR)
Which Country is the Play Electra and Orestes, The Trial from?
SELECT COUNT(time) FROM table_name_66 WHERE lane = 4
CREATE TABLE table_name_66 (time VARCHAR, lane VARCHAR)
How much total time was in lane 4?
SELECT MAX(rank) FROM table_name_98 WHERE react > 0.20400000000000001 AND time > 45.56
CREATE TABLE table_name_98 (rank INTEGER, react VARCHAR, time VARCHAR)
Which Rank has a Reaction time larger than 0.20400000000000001, and a Time larger than 45.56?
SELECT SUM(rank) FROM table_name_3 WHERE lane > 7 AND athlete = "michael mathieu" AND react > 0.203
CREATE TABLE table_name_3 (rank INTEGER, react VARCHAR, lane VARCHAR, athlete VARCHAR)
How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?
SELECT SUM(time) FROM table_name_15 WHERE react < 0.20400000000000001 AND rank = 1
CREATE TABLE table_name_15 (time INTEGER, react VARCHAR, rank VARCHAR)
Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?
SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0
CREATE TABLE table_name_60 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)
What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?
SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 = 3 AND top_10 < 5
CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR)
What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?
SELECT COUNT(top_25) FROM table_name_61 WHERE events < 10
CREATE TABLE table_name_61 (top_25 VARCHAR, events INTEGER)
What's the sum of Top-25 that has an Events that is smaller than 10?
SELECT COUNT(top_10) FROM table_name_87 WHERE events > 16 AND top_5 > 5
CREATE TABLE table_name_87 (top_10 VARCHAR, events VARCHAR, top_5 VARCHAR)
What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?
SELECT MIN(cuts_made) FROM table_name_50 WHERE tournament = "pga championship" AND top_5 < 2
CREATE TABLE table_name_50 (cuts_made INTEGER, tournament VARCHAR, top_5 VARCHAR)
What is the lowest Cuts made that has a Tournament of PGA Championship, and has a Top-5 that is smaller than 2?
SELECT episode FROM table_name_64 WHERE year < 2004 AND nominee_s_ = "john wells"
CREATE TABLE table_name_64 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
When the nominee(s) is john wells what is the episode for a year before 2004?
SELECT result FROM table_name_57 WHERE nominee_s_ = "janine sherman"
CREATE TABLE table_name_57 (result VARCHAR, nominee_s_ VARCHAR)
What is the result when the nominee(s) of janine sherman?
SELECT result FROM table_name_64 WHERE year > 2003 AND nominee_s_ = "john wells"
CREATE TABLE table_name_64 (result VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
What is the result for a year after 2003, when the nominee(s) is john wells?
SELECT purse FROM table_name_94 WHERE distance = "1-1/16" AND year = 2003
CREATE TABLE table_name_94 (purse VARCHAR, distance VARCHAR, year VARCHAR)
What is the purse in 2003, which had a 1-1/16 distance?
SELECT trainer FROM table_name_5 WHERE winner = "skylighter"
CREATE TABLE table_name_5 (trainer VARCHAR, winner VARCHAR)
Who is the trainer of the winner skylighter?
SELECT distance FROM table_name_85 WHERE time = "1:46.32"
CREATE TABLE table_name_85 (distance VARCHAR, time VARCHAR)
What is the distance with a 1:46.32 time?
SELECT AVG(year) FROM table_name_81 WHERE time = "1:42.85"
CREATE TABLE table_name_81 (year INTEGER, time VARCHAR)
What is the average year with a 1:42.85 time?
SELECT distance FROM table_name_18 WHERE year = 2006
CREATE TABLE table_name_18 (distance VARCHAR, year VARCHAR)
What is the distance in 2006?
SELECT director FROM table_name_12 WHERE title = "clean pastures"
CREATE TABLE table_name_12 (director VARCHAR, title VARCHAR)
Who was the director of Clean Pastures?
SELECT release_date FROM table_name_14 WHERE production_num = "8181"
CREATE TABLE table_name_14 (release_date VARCHAR, production_num VARCHAR)
What was the release date for Production Number 8181?
SELECT series FROM table_name_28 WHERE director = "frank tashlin" AND production_num = "8053"
CREATE TABLE table_name_28 (series VARCHAR, director VARCHAR, production_num VARCHAR)
What series was directed by Frank Tashlin and has the production number, 8053?
SELECT series FROM table_name_38 WHERE title = "egghead rides again"
CREATE TABLE table_name_38 (series VARCHAR, title VARCHAR)
What series was called Egghead Rides Again?
SELECT tie_no FROM table_name_56 WHERE away_team = "port vale"
CREATE TABLE table_name_56 (tie_no VARCHAR, away_team VARCHAR)
What is the Tie no of the Port Vale Away game?
SELECT score FROM table_name_30 WHERE home_team = "halifax town"
CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)
What is the Score of the Halifax Town Home game?
SELECT score FROM table_name_72 WHERE home_team = "scarborough"
CREATE TABLE table_name_72 (score VARCHAR, home_team VARCHAR)
What is the Score of the Scarborough Home game?
SELECT college FROM table_name_8 WHERE team = "boston patriots"
CREATE TABLE table_name_8 (college VARCHAR, team VARCHAR)
Which college did the player who went to the Boston Patriots go to?
SELECT MAX(pick) FROM table_name_20 WHERE college = "lsu"
CREATE TABLE table_name_20 (pick INTEGER, college VARCHAR)
What was the highest pick number of the player who went to LSU in college?
SELECT college FROM table_name_54 WHERE pick = 136
CREATE TABLE table_name_54 (college VARCHAR, pick VARCHAR)
Which college did the player picked number 136 go to?
SELECT college FROM table_name_95 WHERE pick > 130 AND team = "new york jets"
CREATE TABLE table_name_95 (college VARCHAR, pick VARCHAR, team VARCHAR)
Which college did the player picked larger than 130 by the New York Jets go to?
SELECT COUNT(lane) FROM table_name_2 WHERE name = "emily seebohm"
CREATE TABLE table_name_2 (lane VARCHAR, name VARCHAR)
What lane was Emily Seebohm in?
SELECT quantity FROM table_name_50 WHERE railway_number_s_ = "263"
CREATE TABLE table_name_50 (quantity VARCHAR, railway_number_s_ VARCHAR)
What is the quantity for railway 263?
SELECT year_s__of_manufacture FROM table_name_35 WHERE railway_number_s_ = "26 (ii) …63 (ii) , 188–193"
CREATE TABLE table_name_35 (year_s__of_manufacture VARCHAR, railway_number_s_ VARCHAR)
What are the year(s) of manufacture for railway number(s) 26 (ii) …63 (ii) , 188–193?
SELECT railway_number_s_ FROM table_name_47 WHERE year_s__of_manufacture = "1905–1906"
CREATE TABLE table_name_47 (railway_number_s_ VARCHAR, year_s__of_manufacture VARCHAR)
What are the railway number(s) for year(s) of manufacture of 1905–1906?
SELECT player FROM table_name_69 WHERE position = "rb" AND team = "oakland"
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, team VARCHAR)
Who is the rb player from team oakland?
SELECT team FROM table_name_93 WHERE college = "ohio state"
CREATE TABLE table_name_93 (team VARCHAR, college VARCHAR)
What is the team of the player from ohio state?
SELECT MAX(rank) FROM table_name_38 WHERE country = "uzbekistan" AND time > 11.44
CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR, time VARCHAR)
What is the highest rank in Uzbekistan with a time larger than 11.44?
SELECT AVG(heat) FROM table_name_54 WHERE rank = 30
CREATE TABLE table_name_54 (heat INTEGER, rank VARCHAR)
What is the average heat ranked at 30?
SELECT AVG(time) FROM table_name_29 WHERE rank = 61
CREATE TABLE table_name_29 (time INTEGER, rank VARCHAR)
What is the average time in a rank of 61?
SELECT COUNT(capacity) FROM table_name_97 WHERE vehicle = "2003 holden commodore ute"
CREATE TABLE table_name_97 (capacity VARCHAR, vehicle VARCHAR)
How much Capacity has a Vehicle of 2003 holden commodore ute?
SELECT navigator FROM table_name_37 WHERE total_time = "08:29"
CREATE TABLE table_name_37 (navigator VARCHAR, total_time VARCHAR)
Which Navigator has a Total Time of 08:29?
SELECT MIN(capacity) FROM table_name_61 WHERE class = "cm22" AND vehicle = "1999 subaru impreza wrx sti"
CREATE TABLE table_name_61 (capacity INTEGER, class VARCHAR, vehicle VARCHAR)
Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?
SELECT driver FROM table_name_21 WHERE capacity < 5700 AND total_time = "08:29"
CREATE TABLE table_name_21 (driver VARCHAR, capacity VARCHAR, total_time VARCHAR)
Which Driver has a Capacity smaller than 5700, and a Total Time of 08:29?
SELECT COUNT(losses) FROM table_name_43 WHERE byes > 0
CREATE TABLE table_name_43 (losses VARCHAR, byes INTEGER)
What is the total number of losses for teams with more than 0 byes?
SELECT SUM(draws) FROM table_name_67 WHERE against = 1731 AND losses < 10
CREATE TABLE table_name_67 (draws INTEGER, against VARCHAR, losses VARCHAR)
What is the sum of draws for teams with against of 1731 and under 10 losses?
SELECT release_date FROM table_name_35 WHERE director = "friz freleng" AND title = "tree cornered tweety"
CREATE TABLE table_name_35 (release_date VARCHAR, director VARCHAR, title VARCHAR)
When was Tree Cornered Tweety, directed by Friz Freleng, released?
SELECT release_date FROM table_name_68 WHERE title = "too hop to handle"
CREATE TABLE table_name_68 (release_date VARCHAR, title VARCHAR)
When was Too Hop to Handle released?
SELECT series FROM table_name_85 WHERE title = "barbary coast bunny"
CREATE TABLE table_name_85 (series VARCHAR, title VARCHAR)
From which series is the title Barbary Coast Bunny?
SELECT lyrics__l____music__m_ FROM table_name_76 WHERE place = "23"
CREATE TABLE table_name_76 (lyrics__l____music__m_ VARCHAR, place VARCHAR)
Who did the Lyrics (l) / Music (m) for the song in 23 Place?
SELECT votes FROM table_name_11 WHERE artist = "filipa batista"
CREATE TABLE table_name_11 (votes VARCHAR, artist VARCHAR)
What are the Votes for the Song by Artist Filipa Batista?
SELECT votes FROM table_name_6 WHERE place = "9"
CREATE TABLE table_name_6 (votes VARCHAR, place VARCHAR)
What is the Votes for the Song in Place 9?