answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT games FROM table_name_39 WHERE match_points = "34"
What is the number of games for a club that has 34 match points?
CREATE TABLE table_name_39 (games VARCHAR, match_points VARCHAR)
SELECT races FROM table_21471897_2 WHERE team_name = "Prada Challenge"
Name the races for the prada challenge
CREATE TABLE table_21471897_2 (races VARCHAR, team_name VARCHAR)
SELECT centerfold_model FROM table_name_79 WHERE date = "9-03"
Who was the Centerfold Model on 9-03?
CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR)
SELECT MAX(game) FROM table_name_29 WHERE record = "12-8-1"
What is the highest game number with a record of 12-8-1?
CREATE TABLE table_name_29 (game INTEGER, record VARCHAR)
SELECT stadium FROM table_name_7 WHERE city = "melfi"
What is the name of the stadium for the city of melfi?
CREATE TABLE table_name_7 (stadium VARCHAR, city VARCHAR)
SELECT date FROM table_name_99 WHERE location = "richfield coliseum"
What date did the Boston Celtics play at Richfield Coliseum?
CREATE TABLE table_name_99 (date VARCHAR, location VARCHAR)
SELECT AVG(top_5) FROM table_name_29 WHERE position = "52nd" AND year < 2000
Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?
CREATE TABLE table_name_29 (top_5 INTEGER, position VARCHAR, year VARCHAR)
SELECT title FROM table_name_14 WHERE year < 2001 AND award = "independent spirit awards"
Which Title has a Year smaller than 2001, and an Award of independent spirit awards?
CREATE TABLE table_name_14 (title VARCHAR, year VARCHAR, award VARCHAR)
SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh"
On what date did Kim Fogh replace the previous manager?
CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT nationality FROM table_1473672_7 WHERE nhl_team = "Toronto Maple Leafs"
what country was the player drafted by the toronto maple leafs
CREATE TABLE table_1473672_7 (nationality VARCHAR, nhl_team VARCHAR)
SELECT gold_coast FROM table_name_49 WHERE perth = "no" AND sydney = "yes" AND auckland = "yes"
Which Gold Coast has a Perth of no, a Sydney of yes, and an Auckland of yes?
CREATE TABLE table_name_49 (gold_coast VARCHAR, auckland VARCHAR, perth VARCHAR, sydney VARCHAR)
SELECT driver FROM table_name_53 WHERE rounds = "all" AND chassis = "f399"
Who was the driver that had all rounds and a f399 chassis?
CREATE TABLE table_name_53 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)
SELECT MIN(no_result) FROM table_name_50 WHERE _percentage_win = "100.00%" AND played > 4 AND year = "2012"
What kind of No Result has a % Win of 100.00% and a Played larger than 4 in 2012?
CREATE TABLE table_name_50 (no_result INTEGER, year VARCHAR, _percentage_win VARCHAR, played VARCHAR)
SELECT location FROM table_name_34 WHERE mascot = "tigers"
Which Location has a Mascot of tigers?
CREATE TABLE table_name_34 (location VARCHAR, mascot VARCHAR)
SELECT MAX(losses) FROM table_name_29 WHERE matches = 10 AND draws > 1
Which club has the most losses with 10 matches played and more than 1 draw?
CREATE TABLE table_name_29 (losses INTEGER, matches VARCHAR, draws VARCHAR)
SELECT T3.Pilot_name, T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID ORDER BY T3.Rank
Show the names of pilots and fleet series of the aircrafts they have flied with in ascending order of the rank of the pilot.
CREATE TABLE pilot (Pilot_name VARCHAR, Pilot_ID VARCHAR, Rank VARCHAR); CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE aircraft (Fleet_Series VARCHAR, Aircraft_ID VARCHAR)
SELECT MAX(points) FROM table_23308178_8
What is the largest number of points they had?
CREATE TABLE table_23308178_8 (points INTEGER)
SELECT leagues_entering_this_round FROM table_19089486_1 WHERE clubs_involved = 4
Name the leagues entering this round for 4
CREATE TABLE table_19089486_1 (leagues_entering_this_round VARCHAR, clubs_involved VARCHAR)
SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id
Show the average share count of transactions for different investors.
CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)
SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING COUNT(*) > 1
Which cities do more than one employee under age 30 come from?
CREATE TABLE employee (city VARCHAR, age INTEGER)
SELECT round FROM table_name_42 WHERE track = "clipsal 500 support"
What Round has the Track Clipsal 500 Support?
CREATE TABLE table_name_42 (round VARCHAR, track VARCHAR)
SELECT date FROM table_name_7 WHERE attendance = "19,183"
What is the date of the game with an attendance of 19,183?
CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)
SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY COUNT(*) LIMIT 1
What is the document id with least number of paragraphs?
CREATE TABLE Paragraphs (document_id VARCHAR)
SELECT T1.booking_status_code FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_number = "Suite 634"
What is the booking status code of the apartment with apartment number "Suite 634"?
CREATE TABLE Apartments (apt_id VARCHAR, apt_number VARCHAR); CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR, apt_id VARCHAR)
SELECT Fname, Lname, phone FROM Faculty WHERE Sex = 'F'
Show the first name, last name, and phone number for all female faculty members.
CREATE TABLE Faculty (Fname VARCHAR, Lname VARCHAR, phone VARCHAR, Sex VARCHAR)
SELECT years FROM table_name_36 WHERE representative = "j. smith young"
What years did J. Smith Young serve as a Representative?
CREATE TABLE table_name_36 (years VARCHAR, representative VARCHAR)
SELECT score FROM table_17103645_10 WHERE game = 19
Name the score when game is 19
CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR)
SELECT MIN(attendance) FROM table_name_26 WHERE home_team = "welling united"
What is the lowest Attendance, when Home Team is "Welling United"?
CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR)
SELECT COUNT(dates) FROM table_15315816_1 WHERE year = "2006"
When are all dates in the year 2006?
CREATE TABLE table_15315816_1 (dates VARCHAR, year VARCHAR)
SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND ch__number = "TV-37"
What is the coverage for relay tv-37?
CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, station_type VARCHAR, ch__number VARCHAR)
SELECT COUNT(seats_in_hamburgische_bürgerschaft) FROM table_name_18 WHERE abbr = "bündnis 90 / die grünen (gal)"
WHAT IS THE TOTAL NUMBER OF SEATS IN Hamburgische Bürgerschaft WITH AN ABBR OF bündnis 90 / die grünen (gal)?
CREATE TABLE table_name_18 (seats_in_hamburgische_bürgerschaft VARCHAR, abbr VARCHAR)
SELECT wins FROM table_name_20 WHERE stadium = "richmond cricket ground"
How many wins did they have at Richmond Cricket Ground Stadium?
CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)
SELECT COUNT(score) FROM table_17001658_7 WHERE game = 37
How many scores are listed for game 37?
CREATE TABLE table_17001658_7 (score VARCHAR, game VARCHAR)
SELECT status FROM table_name_60 WHERE network_affiliation = "independent" AND station = "kpfb"
What is the status of the independent station KPFB?
CREATE TABLE table_name_60 (status VARCHAR, network_affiliation VARCHAR, station VARCHAR)
SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing
How many distinct claim outcome codes are there?
CREATE TABLE claims_processing (claim_outcome_code VARCHAR)
SELECT nfl_club FROM table_name_43 WHERE player = "sam tidmore" AND pick = 81
Which NFL Club has a Player of sam tidmore, and a Pick of 81?
CREATE TABLE table_name_43 (nfl_club VARCHAR, player VARCHAR, pick VARCHAR)
SELECT venue FROM table_name_88 WHERE season = "2010–11"
What was the venue during the Season of 2010–11?
CREATE TABLE table_name_88 (venue VARCHAR, season VARCHAR)
SELECT MIN(opp_points) FROM table_22860990_3 WHERE record = "6-2"
How many points did the opponents with a 6-2 record against the Spartans score?
CREATE TABLE table_22860990_3 (opp_points INTEGER, record VARCHAR)
SELECT skip FROM table_1644857_2 WHERE pf = 73
Who was skip for the country whose points for (PF) was 73?
CREATE TABLE table_1644857_2 (skip VARCHAR, pf VARCHAR)
SELECT record FROM table_name_92 WHERE match_report = "recap" AND result = "l 30–20"
Which Record has a Match Report of recap, and a Result of l 30–20?
CREATE TABLE table_name_92 (record VARCHAR, match_report VARCHAR, result VARCHAR)
SELECT format FROM table_name_70 WHERE country = "united kingdom" AND catalogue__number = "886973273913 (gowow012)"
What is the format of catalog number 886973273913 (gowow012) in the United Kingdom?
CREATE TABLE table_name_70 (format VARCHAR, country VARCHAR, catalogue__number VARCHAR)
SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = "ART Grand Prix"
When art grand prix is the team and 2010 is the season how many wins are there?
CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR)
SELECT MAX(year) FROM table_name_20 WHERE engine = "renault ef15 1.5 v6 t" AND points > 5
What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?
CREATE TABLE table_name_20 (year INTEGER, engine VARCHAR, points VARCHAR)
SELECT quantity FROM table_name_58 WHERE axle_arrangement___uic___bauart = "c n2t" AND drg_number_s_ = "99 093"
Which quantity has Axle arrangement (UIC)bauart of c n2t, and DRG number 99 093?
CREATE TABLE table_name_58 (quantity VARCHAR, axle_arrangement___uic___bauart VARCHAR, drg_number_s_ VARCHAR)
SELECT tie_no FROM table_name_26 WHERE date = "5 january 1986" AND away_team = "exeter city"
What is the tie number in the game on 5 January 1986 where Exeter City is the away team?
CREATE TABLE table_name_26 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT MAX(year) FROM table_name_58 WHERE category = "best original song (รอเธอหันมา – โฟกัส จิระกุล)"
Which Year has a Category of best original song (รอเธอหันมา – โฟกัส จิระกุล)?
CREATE TABLE table_name_58 (year INTEGER, category VARCHAR)
SELECT date FROM table_name_77 WHERE home = "montreal canadiens" AND record = "14–11–3"
What is the date that the Montreal Canadiens hosted a game with a record of 14–11–3?
CREATE TABLE table_name_77 (date VARCHAR, home VARCHAR, record VARCHAR)
SELECT venue FROM table_name_22 WHERE city = "seattle"
What is the venue in Seattle?
CREATE TABLE table_name_22 (venue VARCHAR, city VARCHAR)
SELECT track FROM table_name_29 WHERE distance = "6 furlongs" AND race = "spectacular bid stakes"
What is the race with the track distance of 6 furlongs and spectacular bid stakes?
CREATE TABLE table_name_29 (track VARCHAR, distance VARCHAR, race VARCHAR)
SELECT tournament FROM table_name_31 WHERE opponent = "piero luisi"
Which Tournament has a Opponent of piero luisi?
CREATE TABLE table_name_31 (tournament VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_86 WHERE outcome = "runner-up" AND opponent_in_the_final = "gilles simon"
Which date has an Outcome of runner-up, and an Opponent in the final of gilles simon?
CREATE TABLE table_name_86 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_36 WHERE loss = "reuschel (12-3)"
what date did reuschel (12-3) lose?
CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_23718905_6 WHERE city = "El Paso, Texas"
What was the date of the game played in El Paso, Texas?
CREATE TABLE table_23718905_6 (date VARCHAR, city VARCHAR)
SELECT winners FROM table_name_79 WHERE year = "2005"
Who is listed as the Winners with a Year of 2005?
CREATE TABLE table_name_79 (winners VARCHAR, year VARCHAR)
SELECT episode FROM table_29141354_1 WHERE jamie_and_johns_guest = "Tom Daley"
what was the size when tom daley appeared
CREATE TABLE table_29141354_1 (episode VARCHAR, jamie_and_johns_guest VARCHAR)
SELECT player FROM table_name_16 WHERE place = "t7" AND score = 70 - 71 = 141
Who placed t7 with a score of 70-71=141?
CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT location FROM table_name_1 WHERE circuit = "august 16"
What is Location, when Circuit is August 16?
CREATE TABLE table_name_1 (location VARCHAR, circuit VARCHAR)
SELECT number_of_electorates__2009_ FROM table_name_13 WHERE constituency_number = "182"
What is the number of electorates (2009) for Constituency number 182?
CREATE TABLE table_name_13 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)
SELECT finalist FROM table_name_69 WHERE semi_finalists = "monica seles conchita martínez"
Which Finalist has a Semi finalists of monica seles conchita martínez?
CREATE TABLE table_name_69 (finalist VARCHAR, semi_finalists VARCHAR)
SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = "ian chamings"
How much money did Ian Chamings request?
CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)
SELECT class_to_1928 FROM table_name_16 WHERE quantity < 440 AND seats = "29/29"
What Class to 1928 has the Quantity smaller than 440 and Seats of 29/29?
CREATE TABLE table_name_16 (class_to_1928 VARCHAR, quantity VARCHAR, seats VARCHAR)
SELECT venue FROM table_name_45 WHERE group = "g1"
What venue has g1 as the group?
CREATE TABLE table_name_45 (venue VARCHAR, group VARCHAR)
SELECT position FROM table_name_19 WHERE nationality = "united states" AND pick = 9
Which Position has a Nationality of united states, and a Pick of 9?
CREATE TABLE table_name_19 (position VARCHAR, nationality VARCHAR, pick VARCHAR)
SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz"
What episode number was written by Gregg Hurwitz?
CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR)
SELECT model FROM table_name_60 WHERE torque = "n·m (lb·ft)@1500-2500"
What model is the n·m (lb·ft)@1500-2500 torque?
CREATE TABLE table_name_60 (model VARCHAR, torque VARCHAR)
SELECT name FROM table_name_27 WHERE floors > 36 AND years_as_tallest = "1986–1992"
What is the Name of the Building with 36 or more Floors with Years as tallest of 1986–1992?
CREATE TABLE table_name_27 (name VARCHAR, floors VARCHAR, years_as_tallest VARCHAR)
SELECT MIN(draws) FROM table_name_66 WHERE losses > 0 AND against < 1728 AND ballarat_fl = "melton" AND byes < 2
What is the lowest draws that have losses greater than 0, an against less than 1728, melton as the ballarat fl, and byes less than 2?
CREATE TABLE table_name_66 (draws INTEGER, byes VARCHAR, ballarat_fl VARCHAR, losses VARCHAR, against VARCHAR)
SELECT SUM(number_of_households) FROM table_name_58 WHERE county = "ottawa"
How many households are in Ottawa?
CREATE TABLE table_name_58 (number_of_households INTEGER, county VARCHAR)
SELECT COUNT(wins) FROM table_name_61 WHERE ballarat_fl = "east point" AND against > 1000
How many total wins does Ballarat FL of East point have when the against is greater than 1000?
CREATE TABLE table_name_61 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR)
SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning"
Which method's event was flawless fighting championship 1: the beginning?
CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)
SELECT team FROM table_13619053_8 WHERE record = "13-48"
Who did the Raptors play against when their record was 13-48?
CREATE TABLE table_13619053_8 (team VARCHAR, record VARCHAR)
SELECT first_name, last_name, department_id FROM employees WHERE salary IN (SELECT MIN(salary) FROM employees GROUP BY department_id)
Find the first name and last name and department id for those employees who earn such amount of salary which is the smallest salary of any of the departments.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR, salary INTEGER)
SELECT away_team FROM table_name_30 WHERE venue = "lake oval"
What was the away team when the venue was Lake Oval?
CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)
SELECT player FROM table_name_91 WHERE overs = "87.4"
Tell me the player with overs of 87.4
CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR)
SELECT report FROM table_name_39 WHERE fastest_lap = "douglas soares"
When Douglas Soares had the fastest lap, what was the report?
CREATE TABLE table_name_39 (report VARCHAR, fastest_lap VARCHAR)
SELECT 2009 FROM table_name_53 WHERE tournament = "cincinnati"
What tournament what held in Cincinnati in 2009?
CREATE TABLE table_name_53 (tournament VARCHAR)
SELECT tie_no FROM table_name_32 WHERE away_team = "manchester united"
What is Tie No., when Away Team is "Manchester United"?
CREATE TABLE table_name_32 (tie_no VARCHAR, away_team VARCHAR)
SELECT 2003 AS _result FROM table_name_97 WHERE council = "falkirk"
What's the 2003 result for the falkirk council?
CREATE TABLE table_name_97 (council VARCHAR)
SELECT SUM(unit) FROM table_name_20 WHERE aircraft = "f.e.2b" AND location = "logeast"
What is the Unit for the Aircraft F.e.2b, located in Logeast?
CREATE TABLE table_name_20 (unit INTEGER, aircraft VARCHAR, location VARCHAR)
SELECT COUNT(asia) FROM table_28621502_1 WHERE title = "UNO HD"
How many of Asian release statuses does Uno HD have?
CREATE TABLE table_28621502_1 (asia VARCHAR, title VARCHAR)
SELECT MIN(position) FROM table_name_37 WHERE points = "32-6" AND goals_against < 59 AND played > 38
What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played?
CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR)
SELECT school_club_team FROM table_name_60 WHERE pick = 139
Which school or club team has a pick of 139?
CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR)
SELECT episode__number FROM table_name_66 WHERE eliminated_contestant = "govinda & david dhawan"
What episode # has govinda & david dhawan as the eliminated contestant?
CREATE TABLE table_name_66 (episode__number VARCHAR, eliminated_contestant VARCHAR)
SELECT incumbent FROM table_1342379_23 WHERE district = "Mississippi 4"
who is the incumbent for district mississippi 4
CREATE TABLE table_1342379_23 (incumbent VARCHAR, district VARCHAR)
SELECT AVG(cuts_made) FROM table_name_50 WHERE tournaments_played > 2 AND year = 2011
What is the average number of cuts made when there were more than 2 tournaments played in 2011?
CREATE TABLE table_name_50 (cuts_made INTEGER, tournaments_played VARCHAR, year VARCHAR)
SELECT shigella FROM table_name_15 WHERE yersinia = "yscn"
Tell me the shigella and yscn
CREATE TABLE table_name_15 (shigella VARCHAR, yersinia VARCHAR)
SELECT date_successor_seated FROM table_1134091_4 WHERE vacator = "Charles E. Chamberlain (R)"
When was the date successor seated when the vacator was charles e. chamberlain (r)?
CREATE TABLE table_1134091_4 (date_successor_seated VARCHAR, vacator VARCHAR)
SELECT location FROM table_name_28 WHERE total_score = "149"
What's the location that has a total of 149?
CREATE TABLE table_name_28 (location VARCHAR, total_score VARCHAR)
SELECT result FROM table_name_49 WHERE year = 2013
What is the result from 2013?
CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR)
SELECT player FROM table_name_83 WHERE college = "arizona"
Which player has a College of arizona?
CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)
SELECT theme FROM table_15796072_1 WHERE original_artist = "The Beatles"
What was the theme when the original artist was The Beatles?
CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR)
SELECT crowd FROM table_name_9 WHERE venue = "corio oval"
What was the attendance at Corio Oval?
CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)
SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3
How many earnings have Wins larger than 3?
CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER)
SELECT T1.name, T1.team_id, MAX(T2.salary) FROM team AS T1 JOIN salary AS T2 ON T1.team_id = T2.team_id GROUP BY T1.team_id
What is the highest salary among each team? List the team name, id and maximum salary.
CREATE TABLE salary (salary INTEGER, team_id VARCHAR); CREATE TABLE team (name VARCHAR, team_id VARCHAR)
SELECT elite_eight FROM table_name_47 WHERE conference = "atlantic 10"
How many teams from the Atlantic 10 conference made it to the Elite Eight?
CREATE TABLE table_name_47 (elite_eight VARCHAR, conference VARCHAR)
SELECT home FROM table_name_83 WHERE date = "27 march 2008"
Who was the home team on 27 march 2008?
CREATE TABLE table_name_83 (home VARCHAR, date VARCHAR)
SELECT COUNT(gold) FROM table_name_50 WHERE total = 1 AND silver = 1
Name the total number of golds when total is 1 and silver is 1
CREATE TABLE table_name_50 (gold VARCHAR, total VARCHAR, silver VARCHAR)
SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = "lübzer"
Who is the team captain of the team that Lübzer is the shirt sponsor for?
CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR)
SELECT result FROM table_name_61 WHERE date = "november 6, 1988"
What was the result of the game on November 6, 1988?
CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR)
SELECT MIN(bronze) FROM table_name_58 WHERE nation = "west germany" AND gold > 0
What is the smallest bronze with a Nation of west germany, and a Gold larger than 0?
CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, gold VARCHAR)