qid
stringlengths
6
9
source
stringlengths
6
259
target
stringlengths
6
409
anonymized_target
stringlengths
16
454
atis_1589
i would like to know the flights that are available leaving out of pittsburgh to san francisco on thursday night after 9pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_1605
i would like to see information for flights from san francisco leaving after 12pm to pittsburgh on monday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2014
list all flights from baltimore to atlanta after 12 noon thursday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2018
list all flights from boston to atlanta after 6 o'clock pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2044
list all flights going from boston to atlanta after 6 o'clock pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2048
list all flights going from boston to atlanta on wednesday after 6 o'clock pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2049
list all flights leaving denver arriving in seattle on saturday that depart after 1230pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1230 : ti ) ( from $0 denver : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2186
list flights from pittsburgh to los angeles which leave on thursday after 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2195
list flights leaving denver and arriving in orlando on saturday departing after 12pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 orlando : ci ) ( day $0 saturday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2260
list the flights from denver to san francisco after 2pm on a monday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2354
next sunday flights from miami to cleveland after 1200 hours
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 sunday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2404
okay give me the flights that leave denver after 7pm next monday arriving in boston
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2465
on tuesday what flights leave phoenix to st. paul minnesota and leave after noon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 phoenix : ci ) ( to $0 st_paul : ci ) ( day $0 tuesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2684
please show me flights from atlanta to oakland california on thursday after 1600 hours
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2689
please show me flights from denver to san francisco on wednesday after 1300 hours
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1300 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2906
show me all flights from boston to pittsburgh on wednesday after 6 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2907
show me all flights from boston to pittsburgh on wednesday of next week which leave boston after 2 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2912
show me all flights from dallas to pittsburgh on monday which leave after 8 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2913
show me all flights from dallas to pittsburgh which leave on monday after 8 o'clock am
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 800 : ti ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2922
show me all flights from denver to san francisco next wednesday which leave after noon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2944
show me all flights from philadelphia to atlanta that leave after 5pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 philadelphia : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2948
show me all flights from philadelphia to denver on sunday which leave philadelphia after noon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_2958
show me all flights from pittsburgh to baltimore which leave thursday after 3 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3139
show me flights from boston to pittsburgh after 1700 hours on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3168
show me flights from milwaukee to orlando on wednesday after 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3189
show me flights from pittsburgh to san francisco on friday leaving after 12 noon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3211
show me flights leaving from denver colorado to pittsburgh pennsylvania on wednesdays after 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3214
show me flights on monday from philadelphia to boston after 7am
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 700 : ti ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_3426
show me the flights from boston to san francisco leaving after 4pm on friday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4133
what flights are there between washington dc and san francisco after 6pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4134
what flights are there between washington dc and san francisco leaving washington after 6pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4193
what flights do you have from boston to pittsburgh on wednesday of next week after 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4258
what flights from st. louis to st. paul on thursday leaving after 10am
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( from $0 st_louis : ci ) ( to $0 st_paul : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4277
what flights go from boston to pittsburgh after 6 o'clock next tuesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 600 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4300
what flights go from pittsburgh to baltimore after 8 o'clock next wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 800 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 wednesday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4317
what flights leave baltimore for boston after 6 o'clock on friday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 600 : ti ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4335
what flights leave pittsburgh after 5pm on thursday and arrive in los angeles
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_4962
which airline offers the cheapest rate going from dallas to baltimore on july fourth
( airline : e ( argmin $0 ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( fare $0 ) ) )
( ANON_ENTITY : e ( argmin $0 ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( fare $0 ) ) )
atis_1151
i need a flight tonight from charlotte to las vegas with a stop in st. louis and i want dinner
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( tonight $0 ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( tonight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_4788
what kinds of planes are used by american airlines
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4789
what kinds of planes are used by midway airlines
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ml : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4804
what planes are used by twa
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 tw : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4851
what types of aircraft does delta fly
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2025
list all flights from boston to san francisco with the maximum number of stops
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( stops $0 ) )
( argmax $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( stops $0 ) )
atis_2808
show flights from baltimore to san francisco between 6pm and 8pm on friday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( < ( departure_time $0 ) 2000 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
atis_586
flight numbers from columbus to minneapolis tomorrow
( lambda $0 e ( exists $1 ( and ( from $1 columbus : ci ) ( to $1 minneapolis : ci ) ( tomorrow $1 ) ( = ( flight_number $1 ) $0 ) ) ) )
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( tomorrow $1 ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_66
all right do you have a flight from washington to boston that stops in philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( stop $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_122
are there any flights from boston to san francisco stopping in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_123
are there any flights from boston to san francisco which stop in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_124
are there any flights from boston to san francisco which stop in washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 washington : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_125
are there any flights from boston to san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_128
are there any flights from denver to atlanta to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_129
are there any flights from denver to atlanta which connect in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_130
are there any flights from denver to atlanta with stops in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_131
are there any flights from denver to pittsburgh connecting in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_132
are there any flights from denver to pittsburgh with a stopover in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_133
are there any flights from denver to pittsburgh with stops in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_135
are there any flights from new york to los angeles which stop over in milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ( stop $0 milwaukee : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_137
are there any flights from philadelphia to dallas which stop in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_195
can you list all flights departing from toronto and landing in san diego with a stopover in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_230
can you show me the list of flights that fly from washington to san francisco via dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_248
can you tell me which flights go from memphis to tacoma and make a stop in los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_278
could you find me a flight from boston to san francisco that stops in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_358
do you have a flight from atlanta to boston that will stop in washington
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( stop $0 washington : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_362
do you have a flight from boston to san francisco with a stopover in fort worth dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 fort_worth : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_365
do you have a flight from philadelphia to san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_381
do you have any flights from boston to dallas fort worth that stop over in philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( stop $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_383
do you have any flights from denver to baltimore via dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_477
find a flight from long beach to st. louis stopping in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 st_louis : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_488
find all flights from philadelphia to dallas stopping in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_490
find any flight from boston to oakland stopping in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_499
find me a flight from boston to san francisco with a layover in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_904
hi i'd like to fly from columbus to phoenix and make a stop in cincinnati along the way
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 phoenix : ci ) ( stop $0 cincinnati : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1073
i need a flight from baltimore to seattle that stops in minneapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ( stop $0 minneapolis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1079
i need a flight from boston to san francisco via dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1100
i need a flight from memphis to tacoma that goes through los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1113
i need a flight from philadelphia to dallas that stops in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1148
i need a flight to seattle leaving from baltimore making a stop in minneapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ( stop $0 minneapolis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1204
i need information on a flight from san francisco to atlanta that would stop in fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ( stop $0 fort_worth : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1228
i need to find a flight from philadelphia to san francisco that has a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1262
i need to take ten people from denver to san diego with a stopover in phoenix please give me the flights
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_diego : ci ) ( stop $0 phoenix : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1274
i want a flight from boston to denver that stops in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( stop $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1279
i want a flight from long beach to st. louis that stops in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 st_louis : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1287
i want a flight from philadelphia to dallas with a stop in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1292
i want a flight from toronto to san diego that stops in st. louis are there flights
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 st_louis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1299
i want a flight originating in denver going to pittsburgh and atlanta in either order
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1315
i want the flights from toronto to san diego that stop in st. louis
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 st_louis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1335
i want to fly from boston to denver with a stop in philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( stop $0 philadelphia : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1349
i want to fly from philadelphia to dallas and make a stopover in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1417
i would like a flight from philadelphia to dallas that makes a stop in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1419
i would like a flight from philadelphia to san francisco but i would like to stop in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1423
i would like a flight from toronto to san diego that stops in kansas city
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 kansas_city : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1427
i would like a flight leaving from boston arriving in san francisco with a stopover in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 atlanta : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1469
i would like information on a flight between washington and san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1530
i would like to find a flight from charlotte north carolina to las vegas i would like a stopover in st. louis
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1546
i would like to fly from atlanta to san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1559
i would like to fly from denver to atlanta by way of pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1562
i would like to fly from denver to pittsburgh and atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1599
i would like to originate my flight in washington dc stop in denver with the destination city of san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
atis_1636
i'd like a flight from washington that stops in denver and goes on to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )