combined_text stringlengths 106 1.05k |
|---|
###question:What is the outcome of the match against Sylvia Hanika on a hard (i) surface?###answer:SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = "sylvia hanika" AND surface = "hard (i)"###context:CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR) |
###question:What player had numbers of 20###answer:SELECT player FROM table_name_67 WHERE no_s_ = "20"###context:CREATE TABLE table_name_67 (player VARCHAR, no_s_ VARCHAR) |
###question:Tell me the height in ft for 1999-2004###answer:SELECT height_in_ft FROM table_name_47 WHERE years_for_rockets = "1999-2004"###context:CREATE TABLE table_name_47 (height_in_ft VARCHAR, years_for_rockets VARCHAR) |
###question:Tell me the number for height in ft of 6-7###answer:SELECT no_s_ FROM table_name_18 WHERE height_in_ft = "6-7"###context:CREATE TABLE table_name_18 (no_s_ VARCHAR, height_in_ft VARCHAR) |
###question:What player had a school of missouri###answer:SELECT player FROM table_name_13 WHERE school_club_team_country = "missouri"###context:CREATE TABLE table_name_13 (player VARCHAR, school_club_team_country VARCHAR) |
###question:What pick # has a team from Rimouski Océanic?###answer:SELECT AVG(pick__number) FROM table_name_26 WHERE team_from = "rimouski océanic"###context:CREATE TABLE table_name_26 (pick__number INTEGER, team_from VARCHAR) |
###question:Who is the player from Hotchkiss School with a position of d?###answer:SELECT player FROM table_name_45 WHERE position = "d" AND team_from = "hotchkiss school"###context:CREATE TABLE table_name_45 (player VARCHAR, position VARCHAR, team_from VARCHAR) |
###question:What type is the sorrento to sapri course with a distance of km (mi)?###answer:SELECT type FROM table_name_23 WHERE distance = "km (mi)" AND course = "sorrento to sapri"###context:CREATE TABLE table_name_23 (type VARCHAR, distance VARCHAR, course VARCHAR) |
###question:What type is the misurina to bassano del grappa course?###answer:SELECT type FROM table_name_24 WHERE course = "misurina to bassano del grappa"###context:CREATE TABLE table_name_24 (type VARCHAR, course VARCHAR) |
###question:What's the distance for the chieti to macerata course?###answer:SELECT distance FROM table_name_66 WHERE course = "chieti to macerata"###context:CREATE TABLE table_name_66 (distance VARCHAR, course VARCHAR) |
###question:Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14?###answer:SELECT MIN(points) FROM table_name_51 WHERE make = "chevrolet" AND driver = "sterling marlin" AND car__number < 14###context:CREATE TABLE table_name_51 (points INTEGER... |
###question:Which is the lowest point value that had not only a Chevrolet car, but also a car number smaller than 24, total laps of 312, and a winning purse of $122,325?###answer:SELECT MIN(points) FROM table_name_17 WHERE make = "chevrolet" AND car__number < 24 AND laps = 312 AND winnings = "$122,325"###context:CREATE... |
###question:What is the location for the win against Johan Mparmpagiannis?###answer:SELECT location FROM table_name_78 WHERE result = "win" AND opponent = "johan mparmpagiannis"###context:CREATE TABLE table_name_78 (location VARCHAR, result VARCHAR, opponent VARCHAR) |
###question:What is the method against Björn Bregy?###answer:SELECT method FROM table_name_29 WHERE opponent = "björn bregy"###context:CREATE TABLE table_name_29 (method VARCHAR, opponent VARCHAR) |
###question:What is the method against Paula Mataele?###answer:SELECT method FROM table_name_26 WHERE opponent = "paula mataele"###context:CREATE TABLE table_name_26 (method VARCHAR, opponent VARCHAR) |
###question:What is the date of the match in Vilnius, Lithuania?###answer:SELECT date FROM table_name_60 WHERE location = "vilnius, lithuania"###context:CREATE TABLE table_name_60 (date VARCHAR, location VARCHAR) |
###question:What is the result against Errol Zimmerman on 2007-04-07?###answer:SELECT result FROM table_name_81 WHERE opponent = "errol zimmerman" AND date = "2007-04-07"###context:CREATE TABLE table_name_81 (result VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:What is the location of the match against Martinis Knyzelis?###answer:SELECT location FROM table_name_75 WHERE opponent = "martinis knyzelis"###context:CREATE TABLE table_name_75 (location VARCHAR, opponent VARCHAR) |
###question:What day is st kilda the home side?###answer:SELECT date FROM table_name_87 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR) |
###question:What is melbourne's away score?###answer:SELECT away_team AS score FROM table_name_29 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_29 (away_team VARCHAR) |
###question:What was the home team's score when Geelong was the away team?###answer:SELECT home_team AS score FROM table_name_1 WHERE away_team = "geelong"###context:CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR) |
###question:What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?###answer:SELECT SUM(1978 AS _veteran_membership) FROM table_name_66 WHERE NOT _late_1941 = "macedonia" AND late_1943 < 10 OFFSET 000###context:CREATE TABLE table_name_66 (late_1943 VARCHAR, _late_1941 VARCHAR) |
###question:Which opponent has a Season of 2011/12?###answer:SELECT opponent FROM table_name_3 WHERE season = "2011/12"###context:CREATE TABLE table_name_3 (opponent VARCHAR, season VARCHAR) |
###question:Which opponent has a Season of 2010/11?###answer:SELECT opponent FROM table_name_7 WHERE season = "2010/11"###context:CREATE TABLE table_name_7 (opponent VARCHAR, season VARCHAR) |
###question:Which competition has a Season of 2010/11?###answer:SELECT competition FROM table_name_56 WHERE season = "2010/11"###context:CREATE TABLE table_name_56 (competition VARCHAR, season VARCHAR) |
###question:What Opponent has a Result of –?###answer:SELECT opponent FROM table_name_20 WHERE result = "–"###context:CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR) |
###question:Which season has a Result of 6–9?###answer:SELECT season FROM table_name_71 WHERE result = "6–9"###context:CREATE TABLE table_name_71 (season VARCHAR, result VARCHAR) |
###question:Which round has a Venue of nicosia, and a Opponent of levski sofia zapad?###answer:SELECT round FROM table_name_53 WHERE venue = "nicosia" AND opponent = "levski sofia zapad"###context:CREATE TABLE table_name_53 (round VARCHAR, venue VARCHAR, opponent VARCHAR) |
###question:What resulted in a score of 22-21?###answer:SELECT result FROM table_name_27 WHERE score = "22-21"###context:CREATE TABLE table_name_27 (result VARCHAR, score VARCHAR) |
###question:What competition was held on the date 6/7/03###answer:SELECT competition FROM table_name_97 WHERE date = "6/7/03"###context:CREATE TABLE table_name_97 (competition VARCHAR, date VARCHAR) |
###question:What was the score for the date of 15/6/03###answer:SELECT score FROM table_name_84 WHERE date = "15/6/03"###context:CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR) |
###question:What venue is on the date of 8/6/03###answer:SELECT venue FROM table_name_5 WHERE date = "8/6/03"###context:CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR) |
###question:What outcome has a score of 12-22?###answer:SELECT result FROM table_name_69 WHERE score = "12-22"###context:CREATE TABLE table_name_69 (result VARCHAR, score VARCHAR) |
###question:What date is for Venue of jjb stadium, and a Result of w?###answer:SELECT date FROM table_name_14 WHERE venue = "jjb stadium" AND result = "w"###context:CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, result VARCHAR) |
###question:What is the high lap total for françois cevert?###answer:SELECT MAX(laps) FROM table_name_71 WHERE driver = "françois cevert"###context:CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR) |
###question:Who constructed rolf stommelen's car?###answer:SELECT constructor FROM table_name_83 WHERE driver = "rolf stommelen"###context:CREATE TABLE table_name_83 (constructor VARCHAR, driver VARCHAR) |
###question:Who drive the car that retired due to engine failure and a grid of less than 9?###answer:SELECT driver FROM table_name_91 WHERE time_retired = "engine" AND grid < 9###context:CREATE TABLE table_name_91 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR) |
###question:When was the race that set the record for the Izod Indycar Series?###answer:SELECT date FROM table_name_47 WHERE record = "izod indycar series"###context:CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR) |
###question:Which driver set the Qualifying record with a time of 24.761 seconds?###answer:SELECT driver FROM table_name_61 WHERE record = "qualifying" AND time = "24.761"###context:CREATE TABLE table_name_61 (driver VARCHAR, record VARCHAR, time VARCHAR) |
###question:What Utah Jazz guard, played at BYU?###answer:SELECT player FROM table_name_52 WHERE position = "guard" AND school_club_team = "byu"###context:CREATE TABLE table_name_52 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) |
###question:What college team did Derek Fisher play for?###answer:SELECT school_club_team FROM table_name_19 WHERE player = "derek fisher"###context:CREATE TABLE table_name_19 (school_club_team VARCHAR, player VARCHAR) |
###question:The Utah Jazz Player from UTEP was what nationality?###answer:SELECT nationality FROM table_name_51 WHERE school_club_team = "utep"###context:CREATE TABLE table_name_51 (nationality VARCHAR, school_club_team VARCHAR) |
###question:What is the name of the venue when the home team is Richmond?###answer:SELECT venue FROM table_name_26 WHERE home_team = "richmond"###context:CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR) |
###question:What is the home team score when the venue is Princes Park?###answer:SELECT home_team AS score FROM table_name_40 WHERE venue = "princes park"###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR) |
###question:What actor plays glen cole?###answer:SELECT actor FROM table_name_66 WHERE character = "glen cole"###context:CREATE TABLE table_name_66 (actor VARCHAR, character VARCHAR) |
###question:What is the average number for a final episode featuring maxine valera?###answer:SELECT AVG(final_episode) AS Count FROM table_name_99 WHERE character = "maxine valera"###context:CREATE TABLE table_name_99 (final_episode INTEGER, character VARCHAR) |
###question:How many laps were driven in 2:54:23.8?###answer:SELECT SUM(laps) FROM table_name_45 WHERE time_retired = "2:54:23.8"###context:CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR) |
###question:Which constructor has laps less than 100 and a time/retired +10 laps?###answer:SELECT constructor FROM table_name_43 WHERE laps < 100 AND time_retired = "+10 laps"###context:CREATE TABLE table_name_43 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) |
###question:What are the highest number of laps for grid 8?###answer:SELECT MAX(laps) FROM table_name_95 WHERE grid = 8###context:CREATE TABLE table_name_95 (laps INTEGER, grid VARCHAR) |
###question:Which grid is the highest and has a time/retired of +0.3?###answer:SELECT MAX(grid) FROM table_name_11 WHERE time_retired = "+0.3"###context:CREATE TABLE table_name_11 (grid INTEGER, time_retired VARCHAR) |
###question:Which driver for Maserati has more laps than 23 and a grid greater than 7?###answer:SELECT driver FROM table_name_61 WHERE constructor = "maserati" AND laps > 23 AND grid > 7###context:CREATE TABLE table_name_61 (driver VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR) |
###question:Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4?###answer:SELECT points_classification FROM table_name_7 WHERE general_classification = "bernard hinault" AND trofeo_fast_team = "bianchi" AND winner = "urs f... |
###question:Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?###answer:SELECT winner FROM table_name_71 WHERE points_classification = "giuseppe saronni" AND trofeo_fast_team = "bianchi" AND stage = "3"###context:CREATE TABLE table_name_71 (winner VA... |
###question:Which stage had a Points Classification of Francesco Moser and a general classification of Bernard Hinault?###answer:SELECT stage FROM table_name_57 WHERE points_classification = "francesco moser" AND general_classification = "bernard hinault"###context:CREATE TABLE table_name_57 (stage VARCHAR, points_clas... |
###question:Who was the winner of Stage 12 with a Points Classification of Francesco Moser?###answer:SELECT winner FROM table_name_85 WHERE points_classification = "francesco moser" AND stage = "12"###context:CREATE TABLE table_name_85 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR) |
###question:Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?###answer:SELECT stage FROM table_name_51 WHERE winner = "bernard hinault" AND points_classification = "francesco moser"###context:CREATE TABLE table_name_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHA... |
###question:Who was the loser on December 12, 1971?###answer:SELECT loser FROM table_name_5 WHERE date = "december 12" AND year = 1971###context:CREATE TABLE table_name_5 (loser VARCHAR, date VARCHAR, year VARCHAR) |
###question:Who was the loser at Municipal Stadium after 1970?###answer:SELECT loser FROM table_name_96 WHERE location = "municipal stadium" AND year > 1970###context:CREATE TABLE table_name_96 (loser VARCHAR, location VARCHAR, year VARCHAR) |
###question:What is the date where the winner was the Oakland Raiders in 1975?###answer:SELECT date FROM table_name_95 WHERE year = 1975 AND winner = "oakland raiders"###context:CREATE TABLE table_name_95 (date VARCHAR, year VARCHAR, winner VARCHAR) |
###question:What is result of the game at Arrowhead Stadium where the loser was the Kansas City Chiefs?###answer:SELECT result FROM table_name_23 WHERE location = "arrowhead stadium" AND loser = "kansas city chiefs"###context:CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, loser VARCHAR) |
###question:What was nominated for the Best Movie category?###answer:SELECT work FROM table_name_54 WHERE category = "best movie"###context:CREATE TABLE table_name_54 (work VARCHAR, category VARCHAR) |
###question:Which award did Scream receive a nomination and/or win for in 1997?###answer:SELECT award FROM table_name_27 WHERE work = "scream" AND year = 1997###context:CREATE TABLE table_name_27 (award VARCHAR, work VARCHAR, year VARCHAR) |
###question:What category was Scream nominated for at the International Horror Guild?###answer:SELECT category FROM table_name_52 WHERE work = "scream" AND award = "international horror guild"###context:CREATE TABLE table_name_52 (category VARCHAR, work VARCHAR, award VARCHAR) |
###question:what is the time/retired when the laps is less than 54 and the driver is mark donohue?###answer:SELECT time_retired FROM table_name_35 WHERE laps < 54 AND driver = "mark donohue"###context:CREATE TABLE table_name_35 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) |
###question:what is the grid when the driver is mario andretti and the laps is less than 54?###answer:SELECT MAX(grid) FROM table_name_39 WHERE driver = "mario andretti" AND laps < 54###context:CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
###question:how many laps were there when the grid was 24?###answer:SELECT COUNT(laps) FROM table_name_25 WHERE grid = 24###context:CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR) |
###question:what is the time/retired when the laps is 6, the grid is less than 18 and the driver is clay regazzoni?###answer:SELECT time_retired FROM table_name_79 WHERE laps = 6 AND grid < 18 AND driver = "clay regazzoni"###context:CREATE TABLE table_name_79 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VA... |
###question:Which class is smaller than 5 and the GWR is 1322–1323?###answer:SELECT class FROM table_name_33 WHERE quantity < 5 AND gwr_nos = "1322–1323"###context:CREATE TABLE table_name_33 (class VARCHAR, quantity VARCHAR, gwr_nos VARCHAR) |
###question:Whose term expired in 1996 and was from the province of Central Highlands?###answer:SELECT name FROM table_name_74 WHERE province = "central highlands" AND term_expires = 1996###context:CREATE TABLE table_name_74 (name VARCHAR, province VARCHAR, term_expires VARCHAR) |
###question:Ken Wright of the National Party was from which province?###answer:SELECT province FROM table_name_79 WHERE party = "national" AND name = "ken wright"###context:CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR) |
###question:Which venue hosted a race in 1967?###answer:SELECT venue FROM table_name_20 WHERE year = 1967###context:CREATE TABLE table_name_20 (venue VARCHAR, year VARCHAR) |
###question:Which tournament was held after 1966?###answer:SELECT tournament FROM table_name_73 WHERE year > 1966###context:CREATE TABLE table_name_73 (tournament VARCHAR, year INTEGER) |
###question:Which venue hosted a tournament in 1965?###answer:SELECT venue FROM table_name_78 WHERE year = 1965###context:CREATE TABLE table_name_78 (venue VARCHAR, year VARCHAR) |
###question:What is the result for the best new musical nominee?###answer:SELECT result FROM table_name_17 WHERE nominee = "best new musical"###context:CREATE TABLE table_name_17 (result VARCHAR, nominee VARCHAR) |
###question:How many years does simon baker appear as a nominee?###answer:SELECT COUNT(year) FROM table_name_84 WHERE nominee = "simon baker"###context:CREATE TABLE table_name_84 (year VARCHAR, nominee VARCHAR) |
###question:What is the Height for Years of Rockets of 2005-06?###answer:SELECT height_in_ft FROM table_name_44 WHERE years_for_rockets = "2005-06"###context:CREATE TABLE table_name_44 (height_in_ft VARCHAR, years_for_rockets VARCHAR) |
###question:What is the Height for Years for Rockets of 2005-06?###answer:SELECT height_in_ft FROM table_name_78 WHERE years_for_rockets = "2005-06"###context:CREATE TABLE table_name_78 (height_in_ft VARCHAR, years_for_rockets VARCHAR) |
###question:What is the Attendance on august 15?###answer:SELECT attendance FROM table_name_99 WHERE date = "august 15"###context:CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR) |
###question:What is the constructor for the race with Nigel Mansell as the fastest lap?###answer:SELECT constructor FROM table_name_1 WHERE fastest_lap = "nigel mansell"###context:CREATE TABLE table_name_1 (constructor VARCHAR, fastest_lap VARCHAR) |
###question:What is the fastest lap at estoril?###answer:SELECT fastest_lap FROM table_name_82 WHERE location = "estoril"###context:CREATE TABLE table_name_82 (fastest_lap VARCHAR, location VARCHAR) |
###question:What is the race in Paul Ricard with Keke Rosberg as the fastest lap?###answer:SELECT race FROM table_name_9 WHERE fastest_lap = "keke rosberg" AND location = "paul ricard"###context:CREATE TABLE table_name_9 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR) |
###question:Who was the winner at spa-francorchamps?###answer:SELECT race AS Winner FROM table_name_99 WHERE location = "spa-francorchamps"###context:CREATE TABLE table_name_99 (race VARCHAR, location VARCHAR) |
###question:Where was the game with result 7-2 played?###answer:SELECT venue FROM table_name_11 WHERE result = "7-2"###context:CREATE TABLE table_name_11 (venue VARCHAR, result VARCHAR) |
###question:What was the score of the Friendly competition where the result was 7-2?###answer:SELECT score FROM table_name_54 WHERE competition = "friendly" AND result = "7-2"###context:CREATE TABLE table_name_54 (score VARCHAR, competition VARCHAR, result VARCHAR) |
###question:What was the score of the game on 27 January 1996?###answer:SELECT score FROM table_name_15 WHERE date = "27 january 1996"###context:CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) |
###question:What is the event with a result of 3-2?###answer:SELECT competition FROM table_name_40 WHERE result = "3-2"###context:CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR) |
###question:How big was the crowd size, at the Junction Oval venue?###answer:SELECT SUM(crowd) FROM table_name_30 WHERE venue = "junction oval"###context:CREATE TABLE table_name_30 (crowd INTEGER, venue VARCHAR) |
###question:What is the visiting team of Melbourne's score?###answer:SELECT away_team AS score FROM table_name_39 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_39 (away_team VARCHAR) |
###question:What is the average crowd size of Fitzroy's home team?###answer:SELECT AVG(crowd) FROM table_name_78 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR) |
###question:Which railway had the earliest build date and a disposal of "Scrapped 1941?"###answer:SELECT MIN(build_date) FROM table_name_48 WHERE disposal = "scrapped 1941"###context:CREATE TABLE table_name_48 (build_date INTEGER, disposal VARCHAR) |
###question:Which railway had a loco name of Pyramus and a build date of 1911?###answer:SELECT railway FROM table_name_68 WHERE build_date = 1911 AND loco_name = "pyramus"###context:CREATE TABLE table_name_68 (railway VARCHAR, build_date VARCHAR, loco_name VARCHAR) |
###question:What was the build date of the railway(s) with 0-6-2 t wheels?###answer:SELECT build_date FROM table_name_13 WHERE wheels = "0-6-2 t"###context:CREATE TABLE table_name_13 (build_date VARCHAR, wheels VARCHAR) |
###question:Which disbanded is in the ahl league?###answer:SELECT disbanded FROM table_name_73 WHERE league = "ahl"###context:CREATE TABLE table_name_73 (disbanded VARCHAR, league VARCHAR) |
###question:Which championship was established after 2005?###answer:SELECT championships FROM table_name_1 WHERE established > 2005###context:CREATE TABLE table_name_1 (championships VARCHAR, established INTEGER) |
###question:Which year had J.R. Reid as a player?###answer:SELECT year FROM table_name_62 WHERE player = "j.r. reid"###context:CREATE TABLE table_name_62 (year VARCHAR, player VARCHAR) |
###question:Which hometown is the played Dajuan Wagner from?###answer:SELECT hometown FROM table_name_11 WHERE player = "dajuan wagner"###context:CREATE TABLE table_name_11 (hometown VARCHAR, player VARCHAR) |
###question:When the home team was carlton how many people were in the crowd?###answer:SELECT crowd FROM table_name_29 WHERE home_team = "carlton"###context:CREATE TABLE table_name_29 (crowd VARCHAR, home_team VARCHAR) |
###question:Which away team had a crowd of over 23,000 people?###answer:SELECT away_team FROM table_name_95 WHERE crowd > 23 OFFSET 000###context:CREATE TABLE table_name_95 (away_team VARCHAR, crowd INTEGER) |
###question:What's the home team for the western oval venue?###answer:SELECT home_team FROM table_name_39 WHERE venue = "western oval"###context:CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) |
###question:What's the home team for the junction oval venue?###answer:SELECT home_team AS score FROM table_name_28 WHERE venue = "junction oval"###context:CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.